forked from luck/tmp_suning_uos_patched
spi: synquacer: Simplify with dev_err_probe()
Common pattern of handling deferred probe can be simplified with dev_err_probe(). Less code and the error value gets printed. Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org> Link: https://lore.kernel.org/r/20200901152713.18629-9-krzk@kernel.org Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
a05cec2dc2
commit
74ee6dc125
|
@ -640,9 +640,8 @@ static int synquacer_spi_probe(struct platform_device *pdev)
|
|||
}
|
||||
|
||||
if (IS_ERR(sspi->clk)) {
|
||||
if (!(PTR_ERR(sspi->clk) == -EPROBE_DEFER))
|
||||
dev_err(&pdev->dev, "clock not found\n");
|
||||
ret = PTR_ERR(sspi->clk);
|
||||
ret = dev_err_probe(&pdev->dev, PTR_ERR(sspi->clk),
|
||||
"clock not found\n");
|
||||
goto put_spi;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user