public inbox for linux-mtd@lists.infradead.org
 help / color / mirror / Atom feed
* [PATCH] spi-nor: use ERR_CAST in return
@ 2017-02-12 16:43 Nicholas Mc Guire
  2017-02-12 21:45 ` Boris Brezillon
  0 siblings, 1 reply; 6+ messages in thread
From: Nicholas Mc Guire @ 2017-02-12 16:43 UTC (permalink / raw)
  To: Cyrille Pitchen
  Cc: Marek Vasut, David Woodhouse, Brian Norris, Boris Brezillon,
	Richard Weinberger, linux-mtd, linux-kernel, Nicholas Mc Guire

This fixes a sparse warning about 

Signed-off-by: Nicholas Mc Guire <der.herr@hofr.at>
---

sparse complained about:
drivers/mtd/spi-nor/intel-spi.c:731:28: warning: incorrect type in return expression (different address spaces)
drivers/mtd/spi-nor/intel-spi.c:731:28:    expected struct intel_spi *
drivers/mtd/spi-nor/intel-spi.c:731:28:    got void [noderef] <asn:2>*base

Patch was compile tested with: multi_v7_defconfig (implies CONFIG_MTD_SPI_NOR=y)

Patch is against 4.10-rc6 (localversion-next is next-20170210)

 drivers/mtd/spi-nor/intel-spi.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mtd/spi-nor/intel-spi.c b/drivers/mtd/spi-nor/intel-spi.c
index e43ce63..986a3d0 100644
--- a/drivers/mtd/spi-nor/intel-spi.c
+++ b/drivers/mtd/spi-nor/intel-spi.c
@@ -728,7 +728,7 @@ struct intel_spi *intel_spi_probe(struct device *dev,
 
 	ispi->base = devm_ioremap_resource(dev, mem);
 	if (IS_ERR(ispi->base))
-		return ispi->base;
+		return ERR_CAST(ispi->base);
 
 	ispi->dev = dev;
 	ispi->info = info;
-- 
2.1.4

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

end of thread, other threads:[~2017-02-13  8:00 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-12 16:43 [PATCH] spi-nor: use ERR_CAST in return Nicholas Mc Guire
2017-02-12 21:45 ` Boris Brezillon
2017-02-12 22:04   ` Boris Brezillon
2017-02-13  7:35     ` Nicholas Mc Guire
2017-02-13  7:53       ` Boris Brezillon
2017-02-13  7:59         ` Nicholas Mc Guire

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox