Prev: [PATCH] dell-laptop: make dell_laptop_i8042_filter() static
Next: hugetlb: pin oldpage in page migration
From: Dan Carpenter on 5 Jul 2010 05:30 On Mon, Jul 05, 2010 at 12:01:22PM +0400, Kulikov Vasiliy wrote: > Clone checking of ret to simplify the code. > > This patch silences a compiler warning: > drivers/bluetooth/btmrvl_sdio.c: In function 'btmrvl_sdio_verify_fw_download': > drivers/bluetooth/btmrvl_sdio.c:80: warning: 'fws1' may be used uninitialized in this function > drivers/bluetooth/btmrvl_sdio.c:80: note: 'fws1' was declared here > > Signed-off-by: Kulikov Vasiliy <segooon(a)gmail.com> > --- > drivers/bluetooth/btmrvl_sdio.c | 6 +++--- > 1 files changed, 3 insertions(+), 3 deletions(-) > > diff --git a/drivers/bluetooth/btmrvl_sdio.c b/drivers/bluetooth/btmrvl_sdio.c > index df0773e..47f0f91 100644 > --- a/drivers/bluetooth/btmrvl_sdio.c > +++ b/drivers/bluetooth/btmrvl_sdio.c > @@ -83,10 +83,10 @@ static int btmrvl_sdio_read_fw_status(struct btmrvl_sdio_card *card, u16 *dat) > *dat = 0; > > fws0 = sdio_readb(card->func, CARD_FW_STATUS0_REG, &ret); > + if (ret) > + return -EIO; Normally it would be better to just "return ret;" here. But the caller doesn't use the return code so it doesn't really matter... Reviewed-by: Dan Carpenter <error27(a)gmail.com> regards, dan carpenter > > - if (!ret) > - fws1 = sdio_readb(card->func, CARD_FW_STATUS1_REG, &ret); > - > + fws1 = sdio_readb(card->func, CARD_FW_STATUS1_REG, &ret); > if (ret) > return -EIO; > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
From: Marcel Holtmann on 8 Jul 2010 17:10
Hi Kulikov, > Clone checking of ret to simplify the code. > > This patch silences a compiler warning: > drivers/bluetooth/btmrvl_sdio.c: In function 'btmrvl_sdio_verify_fw_download': > drivers/bluetooth/btmrvl_sdio.c:80: warning: 'fws1' may be used uninitialized in this function > drivers/bluetooth/btmrvl_sdio.c:80: note: 'fws1' was declared here > > Signed-off-by: Kulikov Vasiliy <segooon(a)gmail.com> patch has been applied to bluetooth-next-2.6 tree. Thanks. Regards Marcel -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |