linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] spi: cadence-quadspi: Fix error return code in cqspi_probe
@ 2020-11-16 14:18 Zhihao Cheng
  2020-11-16 14:47 ` Philipp Zabel
  2020-11-16 23:33 ` Mark Brown
  0 siblings, 2 replies; 3+ messages in thread
From: Zhihao Cheng @ 2020-11-16 14:18 UTC (permalink / raw)
  To: broonie, p.zabel, tudor.ambarus, vadivel.muruganx.ramuthevar, vigneshr
  Cc: linux-spi, linux-kernel, chengzhihao1, yi.zhang

Fix to return the error code from
devm_reset_control_get_optional_exclusive() instaed of 0
in cqspi_probe().

Fixes: 31fb632b5d43ca ("spi: Move cadence-quadspi driver to drivers/spi/")
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Zhihao Cheng <chengzhihao1@huawei.com>
---
 drivers/spi/spi-cadence-quadspi.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/spi/spi-cadence-quadspi.c b/drivers/spi/spi-cadence-quadspi.c
index 40938cf3806d..ba7d40c2922f 100644
--- a/drivers/spi/spi-cadence-quadspi.c
+++ b/drivers/spi/spi-cadence-quadspi.c
@@ -1260,12 +1260,14 @@ static int cqspi_probe(struct platform_device *pdev)
 	/* Obtain QSPI reset control */
 	rstc = devm_reset_control_get_optional_exclusive(dev, "qspi");
 	if (IS_ERR(rstc)) {
+		ret = PTR_ERR(rstc);
 		dev_err(dev, "Cannot get QSPI reset.\n");
 		goto probe_reset_failed;
 	}
 
 	rstc_ocp = devm_reset_control_get_optional_exclusive(dev, "qspi-ocp");
 	if (IS_ERR(rstc_ocp)) {
+		ret = PTR_ERR(rstc_ocp);
 		dev_err(dev, "Cannot get QSPI OCP reset.\n");
 		goto probe_reset_failed;
 	}
-- 
2.25.4


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] spi: cadence-quadspi: Fix error return code in cqspi_probe
  2020-11-16 14:18 [PATCH v2] spi: cadence-quadspi: Fix error return code in cqspi_probe Zhihao Cheng
@ 2020-11-16 14:47 ` Philipp Zabel
  2020-11-16 23:33 ` Mark Brown
  1 sibling, 0 replies; 3+ messages in thread
From: Philipp Zabel @ 2020-11-16 14:47 UTC (permalink / raw)
  To: Zhihao Cheng, broonie, tudor.ambarus,
	vadivel.muruganx.ramuthevar, vigneshr
  Cc: linux-spi, linux-kernel, yi.zhang

On Mon, 2020-11-16 at 22:18 +0800, Zhihao Cheng wrote:
> Fix to return the error code from
> devm_reset_control_get_optional_exclusive() instaed of 0
> in cqspi_probe().
> 
> Fixes: 31fb632b5d43ca ("spi: Move cadence-quadspi driver to drivers/spi/")
> Reported-by: Hulk Robot <hulkci@huawei.com>
> Signed-off-by: Zhihao Cheng <chengzhihao1@huawei.com>

Thank you,

Reviewed-by: Philipp Zabel <p.zabel@pengutronix.de>

regards
Philipp

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] spi: cadence-quadspi: Fix error return code in cqspi_probe
  2020-11-16 14:18 [PATCH v2] spi: cadence-quadspi: Fix error return code in cqspi_probe Zhihao Cheng
  2020-11-16 14:47 ` Philipp Zabel
@ 2020-11-16 23:33 ` Mark Brown
  1 sibling, 0 replies; 3+ messages in thread
From: Mark Brown @ 2020-11-16 23:33 UTC (permalink / raw)
  To: tudor.ambarus, Zhihao Cheng, vadivel.muruganx.ramuthevar,
	p.zabel, vigneshr
  Cc: yi.zhang, linux-spi, linux-kernel

On Mon, 16 Nov 2020 22:18:36 +0800, Zhihao Cheng wrote:
> Fix to return the error code from
> devm_reset_control_get_optional_exclusive() instaed of 0
> in cqspi_probe().

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next

Thanks!

[1/1] spi: cadence-quadspi: Fix error return code in cqspi_probe
      commit: ac9978fcad3c5abc43cdd225441ce9459c36e16b

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-11-16 23:34 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-16 14:18 [PATCH v2] spi: cadence-quadspi: Fix error return code in cqspi_probe Zhihao Cheng
2020-11-16 14:47 ` Philipp Zabel
2020-11-16 23:33 ` Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).