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

clk: milbeaut: Don't reference clk_init_data after registration

A future patch is going to change semantics of clk_register() so that
clk_hw::init is guaranteed to be NULL after a clk is registered. Avoid
referencing this member here so that we don't run into NULL pointer
exceptions.

Cc: Sugaya Taichi <sugaya.taichi@socionext.com>
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Link: https://lkml.kernel.org/r/20190815160020.183334-2-sboyd@kernel.org

+1 -1
+1 -1
drivers/clk/clk-milbeaut.c
··· 437 437 if (readl_poll_timeout(divider->write_valid_reg, val, 438 438 !val, M10V_UPOLL_RATE, M10V_UTIMEOUT)) 439 439 pr_err("%s:%s couldn't stabilize\n", 440 - __func__, divider->hw.init->name); 440 + __func__, clk_hw_get_name(hw)); 441 441 } 442 442 443 443 if (divider->lock)