Skip to content

Commit e270dc6

Browse files
committed
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>
1 parent 6de23f8 commit e270dc6

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

drivers/clk/clk_test.c

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -241,8 +241,8 @@ static void clk_test_get_rate(struct kunit *test)
241241
* Test that, after a call to clk_set_rate(), the rate returned by
242242
* clk_get_rate() matches.
243243
*
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.
246246
*/
247247
static void clk_test_set_get_rate(struct kunit *test)
248248
{
@@ -266,8 +266,8 @@ static void clk_test_set_get_rate(struct kunit *test)
266266
* Test that, after several calls to clk_set_rate(), the rate returned
267267
* by clk_get_rate() matches the last one.
268268
*
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.
271271
*/
272272
static void clk_test_set_set_get_rate(struct kunit *test)
273273
{
@@ -1675,8 +1675,8 @@ static void clk_range_test_set_range_set_round_rate_consistent_higher(struct kun
16751675
* call to clk_set_rate_range(), the rate will be raised to match the
16761676
* new minimum.
16771677
*
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.
16801680
*/
16811681
static void clk_range_test_set_range_get_rate_raised(struct kunit *test)
16821682
{
@@ -1707,8 +1707,8 @@ static void clk_range_test_set_range_get_rate_raised(struct kunit *test)
17071707
* call to clk_set_rate_range(), the rate will be lowered to match the
17081708
* new maximum.
17091709
*
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.
17121712
*/
17131713
static void clk_range_test_set_range_get_rate_lowered(struct kunit *test)
17141714
{

0 commit comments

Comments
 (0)