Commit b7da560e authored by Krzysztof Kozlowski's avatar Krzysztof Kozlowski Committed by Herbert Xu

crypto: s5p-sss - Pass error from clk_get and reduce verbosity on deferral

Pass the error directly from devm_clk_get() to describe the real reason,
instead of fixed ENOENT.  Do not print error messages on deferred probe.
Signed-off-by: default avatarKrzysztof Kozlowski <krzk@kernel.org>
Reviewed-by: default avatarKamil Konieczny <k.konieczny@samsung.com>
Acked-by: default avatarKamil Konieczny <k.konieczny@samsung.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 98a6bc10
...@@ -2201,11 +2201,10 @@ static int s5p_aes_probe(struct platform_device *pdev) ...@@ -2201,11 +2201,10 @@ static int s5p_aes_probe(struct platform_device *pdev)
} }
pdata->clk = devm_clk_get(dev, variant->clk_names[0]); pdata->clk = devm_clk_get(dev, variant->clk_names[0]);
if (IS_ERR(pdata->clk)) { if (IS_ERR(pdata->clk))
dev_err(dev, "failed to find secss clock %s\n", return dev_err_probe(dev, PTR_ERR(pdata->clk),
variant->clk_names[0]); "failed to find secss clock %s\n",
return -ENOENT; variant->clk_names[0]);
}
err = clk_prepare_enable(pdata->clk); err = clk_prepare_enable(pdata->clk);
if (err < 0) { if (err < 0) {
...@@ -2217,9 +2216,9 @@ static int s5p_aes_probe(struct platform_device *pdev) ...@@ -2217,9 +2216,9 @@ static int s5p_aes_probe(struct platform_device *pdev)
if (variant->clk_names[1]) { if (variant->clk_names[1]) {
pdata->pclk = devm_clk_get(dev, variant->clk_names[1]); pdata->pclk = devm_clk_get(dev, variant->clk_names[1]);
if (IS_ERR(pdata->pclk)) { if (IS_ERR(pdata->pclk)) {
dev_err(dev, "failed to find clock %s\n", err = dev_err_probe(dev, PTR_ERR(pdata->pclk),
variant->clk_names[1]); "failed to find clock %s\n",
err = -ENOENT; variant->clk_names[1]);
goto err_clk; goto err_clk;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment