···241241 * Test that, after a call to clk_set_rate(), the rate returned by242242 * clk_get_rate() matches.243243 *244244- * This assumes that clk_ops.determine_rate or clk_ops.round_rate won't245245- * modify the requested rate, which is our case in clk_dummy_rate_ops.244244+ * This assumes that clk_ops.determine_rate won't modify the requested rate,245245+ * which is our case in clk_dummy_rate_ops.246246 */247247static void clk_test_set_get_rate(struct kunit *test)248248{···266266 * Test that, after several calls to clk_set_rate(), the rate returned267267 * by clk_get_rate() matches the last one.268268 *269269- * This assumes that clk_ops.determine_rate or clk_ops.round_rate won't270270- * modify the requested rate, which is our case in clk_dummy_rate_ops.269269+ * This assumes that clk_ops.determine_rate won't modify the requested rate,270270+ * which is our case in clk_dummy_rate_ops.271271 */272272static void clk_test_set_set_get_rate(struct kunit *test)273273{···16751675 * call to clk_set_rate_range(), the rate will be raised to match the16761676 * new minimum.16771677 *16781678- * This assumes that clk_ops.determine_rate or clk_ops.round_rate won't16791679- * modify the requested rate, which is our case in clk_dummy_rate_ops.16781678+ * This assumes that clk_ops.determine_rate won't modify the requested rate,16791679+ * which is our case in clk_dummy_rate_ops.16801680 */16811681static void clk_range_test_set_range_get_rate_raised(struct kunit *test)16821682{···17071707 * call to clk_set_rate_range(), the rate will be lowered to match the17081708 * new maximum.17091709 *17101710- * This assumes that clk_ops.determine_rate or clk_ops.round_rate won't17111711- * modify the requested rate, which is our case in clk_dummy_rate_ops.17101710+ * This assumes that clk_ops.determine_rate won't modify the requested rate,17111711+ * which is our case in clk_dummy_rate_ops.17121712 */17131713static void clk_range_test_set_range_get_rate_lowered(struct kunit *test)17141714{