mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 06:31:49 +00:00
crypto: stm32/hash - don't print error on probe deferral
Change driver to not print an error message when the device probe is deferred for a clock resource. Signed-off-by: Lionel Debieve <lionel.debieve@st.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
45dafed6c5
commit
79cd691f60
@ -1464,8 +1464,11 @@ static int stm32_hash_probe(struct platform_device *pdev)
|
||||
|
||||
hdev->clk = devm_clk_get(&pdev->dev, NULL);
|
||||
if (IS_ERR(hdev->clk)) {
|
||||
dev_err(dev, "failed to get clock for hash (%lu)\n",
|
||||
PTR_ERR(hdev->clk));
|
||||
if (PTR_ERR(hdev->clk) != -EPROBE_DEFER) {
|
||||
dev_err(dev, "failed to get clock for hash (%lu)\n",
|
||||
PTR_ERR(hdev->clk));
|
||||
}
|
||||
|
||||
return PTR_ERR(hdev->clk);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user