mirror of
https://github.com/torvalds/linux.git
synced 2024-12-04 01:51:34 +00:00
spi: bcm-qspi: Fix error return code in bcm_qspi_probe()
Fix to return a negative error code from the error handling
case instead of 0, as done elsewhere in this function.
Fixes: fa236a7ef2
("spi: bcm-qspi: Add Broadcom MSPI driver")
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
3bf3eb2b95
commit
71b8f350a4
@ -1205,12 +1205,14 @@ int bcm_qspi_probe(struct platform_device *pdev,
|
||||
|
||||
if (!num_ints) {
|
||||
dev_err(&pdev->dev, "no IRQs registered, cannot init driver\n");
|
||||
ret = -EINVAL;
|
||||
goto qspi_probe_err;
|
||||
}
|
||||
|
||||
qspi->clk = devm_clk_get(&pdev->dev, NULL);
|
||||
if (IS_ERR(qspi->clk)) {
|
||||
dev_warn(dev, "unable to get clock\n");
|
||||
ret = PTR_ERR(qspi->clk);
|
||||
goto qspi_probe_err;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user