diff options
author | Shawn Lin <shawn.lin@rock-chips.com> | 2016-03-13 12:13:22 +0800 |
---|---|---|
committer | Heiko Stuebner <heiko@sntech.de> | 2016-03-27 13:03:35 +0200 |
commit | 1d003eb0805ac5b549e76202a1e95da33f62cb9a (patch) | |
tree | 372bc7310ebd63735e067e43e06e02c3aeca46d9 /drivers/clk/rockchip/clk-rk3288.c | |
parent | ff1ae209617cb31a5297bd103709d6b9e2db77d2 (diff) | |
download | talos-op-linux-1d003eb0805ac5b549e76202a1e95da33f62cb9a.tar.gz talos-op-linux-1d003eb0805ac5b549e76202a1e95da33f62cb9a.zip |
clk: rockchip: release io resource when failing to init clk
We should call iounmap to relase reg_base since it's not going
to be used any more if failing to init clk.
Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com>
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
Diffstat (limited to 'drivers/clk/rockchip/clk-rk3288.c')
-rw-r--r-- | drivers/clk/rockchip/clk-rk3288.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/clk/rockchip/clk-rk3288.c b/drivers/clk/rockchip/clk-rk3288.c index d1031d1149ce..39af05a589b3 100644 --- a/drivers/clk/rockchip/clk-rk3288.c +++ b/drivers/clk/rockchip/clk-rk3288.c @@ -893,6 +893,7 @@ static void __init rk3288_clk_init(struct device_node *np) ctx = rockchip_clk_init(np, rk3288_cru_base, CLK_NR_CLKS); if (IS_ERR(ctx)) { pr_err("%s: rockchip clk init failed\n", __func__); + iounmap(rk3288_cru_base); return; } |