clk: rockchip: fix cpuclk registration error handling

It maybe due to a copy-paste error the error handing should be
cclk not clk when checking if the cpuclk registration succeeded.

Reported-by: Lin Huang <lin.huang@rock-chips.com>
Signed-off-by: Xing Zheng <zhengxing@rock-chips.com>
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
This commit is contained in:
Xing Zheng 2016-05-26 21:49:08 +08:00 committed by Heiko Stuebner
parent 4715f81afc
commit 3183c0d519
1 changed files with 2 additions and 2 deletions

View File

@ -321,9 +321,9 @@ struct clk *rockchip_clk_register_cpuclk(const char *name,
} }
cclk = clk_register(NULL, &cpuclk->hw); cclk = clk_register(NULL, &cpuclk->hw);
if (IS_ERR(clk)) { if (IS_ERR(cclk)) {
pr_err("%s: could not register cpuclk %s\n", __func__, name); pr_err("%s: could not register cpuclk %s\n", __func__, name);
ret = PTR_ERR(clk); ret = PTR_ERR(cclk);
goto free_rate_table; goto free_rate_table;
} }