summaryrefslogtreecommitdiffstats
path: root/drivers/clk/imx/clk-imx7d.c
diff options
context:
space:
mode:
authorBai Ping <b51503@freescale.com>2015-11-26 10:18:43 +0800
committerShawn Guo <shawnguo@kernel.org>2015-12-02 14:10:25 +0800
commit31cbb57d5ac3b8f7a84803eb329fcc8a73fb4ab6 (patch)
treea2d9fd7e94c5b89d64dc90712d8baba50c8eaead /drivers/clk/imx/clk-imx7d.c
parentfdb868cd059a97b35e4a5fcfa073a5d9c375fcdf (diff)
downloadlinux-31cbb57d5ac3b8f7a84803eb329fcc8a73fb4ab6.tar.gz
linux-31cbb57d5ac3b8f7a84803eb329fcc8a73fb4ab6.tar.bz2
linux-31cbb57d5ac3b8f7a84803eb329fcc8a73fb4ab6.zip
clk: imx: Replace clk error check with imx_check_clocks()
As we already have a 'imx_check_clocks' to do the clock error check, so cleanup the error check code. Signed-off-by: Bai Ping <b51503@freescale.com> Acked-by: Stephen Boyd <sboyd@codeaurora.org> Signed-off-by: Shawn Guo <shawnguo@kernel.org>
Diffstat (limited to 'drivers/clk/imx/clk-imx7d.c')
-rw-r--r--drivers/clk/imx/clk-imx7d.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/clk/imx/clk-imx7d.c b/drivers/clk/imx/clk-imx7d.c
index 581b428d3133..fbb6a8c8653d 100644
--- a/drivers/clk/imx/clk-imx7d.c
+++ b/drivers/clk/imx/clk-imx7d.c
@@ -839,10 +839,7 @@ static void __init imx7d_clocks_init(struct device_node *ccm_node)
clks[IMX7D_PLL_ARM_MAIN_CLK],
clks[IMX7D_PLL_SYS_MAIN_CLK]);
- for (i = 0; i < ARRAY_SIZE(clks); i++)
- if (IS_ERR(clks[i]))
- pr_err("i.MX7D clk %d: register failed with %ld\n",
- i, PTR_ERR(clks[i]));
+ imx_check_clocks(clks, ARRAY_SIZE(clks));
clk_data.clks = clks;
clk_data.clk_num = ARRAY_SIZE(clks);