linux-renesas-soc.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] [v2] iio: adc: gyroadc: fix uninitialized return code
@ 2019-07-18 13:57 Arnd Bergmann
  2019-07-18 14:02 ` Wolfram Sang
  0 siblings, 1 reply; 3+ messages in thread
From: Arnd Bergmann @ 2019-07-18 13:57 UTC (permalink / raw)
  To: Marek Vasut, Jonathan Cameron
  Cc: Arnd Bergmann, stable, Marek Vasut, Geert Uytterhoeven,
	Simon Horman, linux-renesas-soc, Wolfram Sang, Hartmut Knaack,
	Lars-Peter Clausen, Peter Meerwald-Stadler, Kuninori Morimoto,
	Rob Herring, linux-iio, linux-kernel

gcc-9 complains about a blatant uninitialized variable use that
all earlier compiler versions missed:

drivers/iio/adc/rcar-gyroadc.c:510:5: warning: 'ret' may be used uninitialized in this function [-Wmaybe-uninitialized]

Return -EINVAL instead here and a few lines above it where
we accidentally return 0 on failure.

Cc: stable@vger.kernel.org
Fixes: 059c53b32329 ("iio: adc: Add Renesas GyroADC driver")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
v2: fix the second return code as well
---
 drivers/iio/adc/rcar-gyroadc.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/iio/adc/rcar-gyroadc.c b/drivers/iio/adc/rcar-gyroadc.c
index 2d685730f867..c37f201294b2 100644
--- a/drivers/iio/adc/rcar-gyroadc.c
+++ b/drivers/iio/adc/rcar-gyroadc.c
@@ -382,7 +382,7 @@ static int rcar_gyroadc_parse_subdevs(struct iio_dev *indio_dev)
 				dev_err(dev,
 					"Only %i channels supported with %pOFn, but reg = <%i>.\n",
 					num_channels, child, reg);
-				return ret;
+				return -EINVAL;
 			}
 		}
 
@@ -391,7 +391,7 @@ static int rcar_gyroadc_parse_subdevs(struct iio_dev *indio_dev)
 			dev_err(dev,
 				"Channel %i uses different ADC mode than the rest.\n",
 				reg);
-			return ret;
+			return -EINVAL;
 		}
 
 		/* Channel is valid, grab the regulator. */
-- 
2.20.0


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

* Re: [PATCH] [v2] iio: adc: gyroadc: fix uninitialized return code
  2019-07-18 13:57 [PATCH] [v2] iio: adc: gyroadc: fix uninitialized return code Arnd Bergmann
@ 2019-07-18 14:02 ` Wolfram Sang
  2019-07-27 20:58   ` Jonathan Cameron
  0 siblings, 1 reply; 3+ messages in thread
From: Wolfram Sang @ 2019-07-18 14:02 UTC (permalink / raw)
  To: Arnd Bergmann
  Cc: Marek Vasut, Jonathan Cameron, stable, Marek Vasut,
	Geert Uytterhoeven, Simon Horman, linux-renesas-soc,
	Hartmut Knaack, Lars-Peter Clausen, Peter Meerwald-Stadler,
	Kuninori Morimoto, Rob Herring, linux-iio, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 691 bytes --]

On Thu, Jul 18, 2019 at 03:57:49PM +0200, Arnd Bergmann wrote:
> gcc-9 complains about a blatant uninitialized variable use that
> all earlier compiler versions missed:
> 
> drivers/iio/adc/rcar-gyroadc.c:510:5: warning: 'ret' may be used uninitialized in this function [-Wmaybe-uninitialized]
> 
> Return -EINVAL instead here and a few lines above it where
> we accidentally return 0 on failure.
> 
> Cc: stable@vger.kernel.org
> Fixes: 059c53b32329 ("iio: adc: Add Renesas GyroADC driver")
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>

Yes, I checked the other error paths, too, and they look proper to me.

Reviewed-by: Wolfram Sang <wsa+renesas@sang-engineering.com>


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [PATCH] [v2] iio: adc: gyroadc: fix uninitialized return code
  2019-07-18 14:02 ` Wolfram Sang
@ 2019-07-27 20:58   ` Jonathan Cameron
  0 siblings, 0 replies; 3+ messages in thread
From: Jonathan Cameron @ 2019-07-27 20:58 UTC (permalink / raw)
  To: Wolfram Sang
  Cc: Arnd Bergmann, Marek Vasut, stable, Marek Vasut,
	Geert Uytterhoeven, Simon Horman, linux-renesas-soc,
	Hartmut Knaack, Lars-Peter Clausen, Peter Meerwald-Stadler,
	Kuninori Morimoto, Rob Herring, linux-iio, linux-kernel

On Thu, 18 Jul 2019 16:02:27 +0200
Wolfram Sang <wsa@the-dreams.de> wrote:

> On Thu, Jul 18, 2019 at 03:57:49PM +0200, Arnd Bergmann wrote:
> > gcc-9 complains about a blatant uninitialized variable use that
> > all earlier compiler versions missed:
> > 
> > drivers/iio/adc/rcar-gyroadc.c:510:5: warning: 'ret' may be used uninitialized in this function [-Wmaybe-uninitialized]
> > 
> > Return -EINVAL instead here and a few lines above it where
> > we accidentally return 0 on failure.
> > 
> > Cc: stable@vger.kernel.org
> > Fixes: 059c53b32329 ("iio: adc: Add Renesas GyroADC driver")
> > Signed-off-by: Arnd Bergmann <arnd@arndb.de>  
> 
> Yes, I checked the other error paths, too, and they look proper to me.
> 
> Reviewed-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
> 

Thanks for sorting that second case as well.

Applied to the fixes-togreg branch of iio.git.

Thanks,

Jonathan


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

end of thread, other threads:[~2019-07-27 20:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-18 13:57 [PATCH] [v2] iio: adc: gyroadc: fix uninitialized return code Arnd Bergmann
2019-07-18 14:02 ` Wolfram Sang
2019-07-27 20:58   ` Jonathan Cameron

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).