diff options
author | Xing Zheng <zhengxing@rock-chips.com> | 2016-05-26 21:49:08 +0800 |
---|---|---|
committer | Heiko Stuebner <heiko@sntech.de> | 2016-05-30 09:40:23 +0200 |
commit | 3183c0d519ff83af2926382c11716496f01d34bf (patch) | |
tree | 5e02cf416791e7541e1e804c62eebc8e5aa602de /drivers/clk/rockchip | |
parent | 4715f81afc342996f680b08c944a712d9cbef11b (diff) | |
download | linux-3183c0d519ff83af2926382c11716496f01d34bf.tar.bz2 |
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>
Diffstat (limited to 'drivers/clk/rockchip')
-rw-r--r-- | drivers/clk/rockchip/clk-cpu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/clk/rockchip/clk-cpu.c b/drivers/clk/rockchip/clk-cpu.c index 4bb130cd0062..05b3d73bfefa 100644 --- a/drivers/clk/rockchip/clk-cpu.c +++ b/drivers/clk/rockchip/clk-cpu.c @@ -321,9 +321,9 @@ struct clk *rockchip_clk_register_cpuclk(const char *name, } 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); - ret = PTR_ERR(clk); + ret = PTR_ERR(cclk); goto free_rate_table; } |