Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

clk: test: remove references to clk_ops.round_rate

The round_rate() clk ops is going away, so let's go ahead and remove any
references to it in the comments.

Signed-off-by: Brian Masney <bmasney@redhat.com>

+8 -8
+8 -8
drivers/clk/clk_test.c
··· 241 241 * Test that, after a call to clk_set_rate(), the rate returned by 242 242 * clk_get_rate() matches. 243 243 * 244 - * This assumes that clk_ops.determine_rate or clk_ops.round_rate won't 245 - * modify the requested rate, which is our case in clk_dummy_rate_ops. 244 + * This assumes that clk_ops.determine_rate won't modify the requested rate, 245 + * which is our case in clk_dummy_rate_ops. 246 246 */ 247 247 static void clk_test_set_get_rate(struct kunit *test) 248 248 { ··· 266 266 * Test that, after several calls to clk_set_rate(), the rate returned 267 267 * by clk_get_rate() matches the last one. 268 268 * 269 - * This assumes that clk_ops.determine_rate or clk_ops.round_rate won't 270 - * modify the requested rate, which is our case in clk_dummy_rate_ops. 269 + * This assumes that clk_ops.determine_rate won't modify the requested rate, 270 + * which is our case in clk_dummy_rate_ops. 271 271 */ 272 272 static void clk_test_set_set_get_rate(struct kunit *test) 273 273 { ··· 1675 1675 * call to clk_set_rate_range(), the rate will be raised to match the 1676 1676 * new minimum. 1677 1677 * 1678 - * This assumes that clk_ops.determine_rate or clk_ops.round_rate won't 1679 - * modify the requested rate, which is our case in clk_dummy_rate_ops. 1678 + * This assumes that clk_ops.determine_rate won't modify the requested rate, 1679 + * which is our case in clk_dummy_rate_ops. 1680 1680 */ 1681 1681 static void clk_range_test_set_range_get_rate_raised(struct kunit *test) 1682 1682 { ··· 1707 1707 * call to clk_set_rate_range(), the rate will be lowered to match the 1708 1708 * new maximum. 1709 1709 * 1710 - * This assumes that clk_ops.determine_rate or clk_ops.round_rate won't 1711 - * modify the requested rate, which is our case in clk_dummy_rate_ops. 1710 + * This assumes that clk_ops.determine_rate won't modify the requested rate, 1711 + * which is our case in clk_dummy_rate_ops. 1712 1712 */ 1713 1713 static void clk_range_test_set_range_get_rate_lowered(struct kunit *test) 1714 1714 {