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

clk: rockchip: remove redundant checking of device_node

rockchip_clk_of_add_provider is used by sub-clk driver which
already call of_iomap before calling it. If device_node does
not exist, of_iomap returns NULL which will fail to init the
sub-clk driver. So really it's redundant.

Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com>
Signed-off-by: Heiko Stuebner <heiko@sntech.de>

authored by

Shawn Lin and committed by
Heiko Stuebner
ff1ae209 2af2544d

+3 -5
+3 -5
drivers/clk/rockchip/clk.c
··· 359 359 void __init rockchip_clk_of_add_provider(struct device_node *np, 360 360 struct rockchip_clk_provider *ctx) 361 361 { 362 - if (np) { 363 - if (of_clk_add_provider(np, of_clk_src_onecell_get, 364 - &ctx->clk_data)) 365 - pr_err("%s: could not register clk provider\n", __func__); 366 - } 362 + if (of_clk_add_provider(np, of_clk_src_onecell_get, 363 + &ctx->clk_data)) 364 + pr_err("%s: could not register clk provider\n", __func__); 367 365 } 368 366 369 367 struct regmap *rockchip_clk_get_grf(struct rockchip_clk_provider *ctx)