Return-path: Received: from mail.bootlin.com ([62.4.15.54]:43138 "EHLO mail.bootlin.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754517AbeGIVAO (ORCPT ); Mon, 9 Jul 2018 17:00:14 -0400 Date: Mon, 9 Jul 2018 23:00:11 +0200 From: Boris Brezillon To: Arnd Bergmann Cc: Ralf Baechle , "open list:RALINK MIPS ARCHITECTURE" , =?UTF-8?B?UmFmYcWCIE1pxYJlY2tp?= , Richard Weinberger , Miquel Raynal , linux-mtd , David Woodhouse , Brian Norris , Marek Vasut , linux-wireless Subject: Re: [PATCH v2 11/24] mtd: rawnand: sunxi: Make sure ret is initialized in sunxi_nfc_read_byte() Message-ID: <20180709230011.1ca3f9ce@bbrezillon> (sfid-20180709_230017_622291_1D30E2C9) In-Reply-To: References: <20180709200945.30116-1-boris.brezillon@bootlin.com> <20180709200945.30116-12-boris.brezillon@bootlin.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Sender: linux-wireless-owner@vger.kernel.org List-ID: On Mon, 9 Jul 2018 22:35:56 +0200 Arnd Bergmann wrote: > On Mon, Jul 9, 2018 at 10:09 PM, Boris Brezillon > wrote: > > Fixes the following smatch warning: > > > > drivers/mtd/nand/raw/sunxi_nand.c:551 sunxi_nfc_read_byte() error: uninitialized symbol 'ret'. > > > > Signed-off-by: Boris Brezillon > > --- > > drivers/mtd/nand/raw/sunxi_nand.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/drivers/mtd/nand/raw/sunxi_nand.c b/drivers/mtd/nand/raw/sunxi_nand.c > > index 99043c3a4fa7..4b11cd4a79be 100644 > > --- a/drivers/mtd/nand/raw/sunxi_nand.c > > +++ b/drivers/mtd/nand/raw/sunxi_nand.c > > @@ -544,7 +544,7 @@ static void sunxi_nfc_write_buf(struct mtd_info *mtd, const uint8_t *buf, > > > > static uint8_t sunxi_nfc_read_byte(struct mtd_info *mtd) > > { > > - uint8_t ret; > > + uint8_t ret = 0; > > > > sunxi_nfc_read_buf(mtd, &ret, 1); > > > > Should there perhaps be a warning when no data was returned after a timeout? We're planning to move this driver to ->exec_op() soon, and with ->exec_op() errors are properly propagated to the core. I guess we can live with this lack of dev_warn() for a bit longer :-).