Searched refs:post_rate_change (Results 1 – 3 of 3) sorted by relevance
2350 struct clk_mux_notifier_rate_change post_rate_change; member2371 ctx->post_rate_change.old_rate = clk_data->old_rate; in clk_mux_notifier_callback()2372 ctx->post_rate_change.new_rate = clk_data->new_rate; in clk_mux_notifier_callback()2373 ctx->post_rate_change.done = true; in clk_mux_notifier_callback()2374 wake_up_interruptible(&ctx->post_rate_change.wq); in clk_mux_notifier_callback()2392 init_waitqueue_head(&ctx->post_rate_change.wq); in clk_mux_notifier_test_init()2463 ret = wait_event_interruptible_timeout(ctx->post_rate_change.wq, in clk_mux_notifier_set_parent_test()2464 ctx->post_rate_change.done, in clk_mux_notifier_set_parent_test()2468 KUNIT_EXPECT_EQ(test, ctx->post_rate_change.old_rate, DUMMY_CLOCK_RATE_1); in clk_mux_notifier_set_parent_test()2469 KUNIT_EXPECT_EQ(test, ctx->post_rate_change.new_rate, DUMMY_CLOCK_RATE_2); in clk_mux_notifier_set_parent_test()
350 void (*post_rate_change)(void); member
795 if (state && pll->params->post_rate_change) in _program_pll()796 pll->params->post_rate_change(); in _program_pll()