Message ID | 20220224211034.625130-1-nathan@kernel.org (mailing list archive) |
---|---|
State | Accepted |
Headers | show |
Series | iio: accel: adxl367: Fix handled initialization in adxl367_irq_handler() | expand |
On Thu, 24 Feb 2022 14:10:34 -0700 Nathan Chancellor <nathan@kernel.org> wrote: > Clang warns: > > drivers/iio/accel/adxl367.c:887:2: error: variable 'handled' is uninitialized when used here [-Werror,-Wuninitialized] > handled |= adxl367_push_event(indio_dev, status); > ^~~~~~~ > drivers/iio/accel/adxl367.c:879:14: note: initialize the variable 'handled' to silence this warning > bool handled; > ^ > = 0 > 1 error generated. > > This should have used '=' instead of '|='; make that change to resolve > the warning. > > Fixes: cbab791c5e2a ("iio: accel: add ADXL367 driver") > Link: https://github.com/ClangBuiltLinux/linux/issues/1605 > Reported-by: kernel test robot <lkp@intel.com> > Signed-off-by: Nathan Chancellor <nathan@kernel.org> Applied to the togreg branch of iio.git. I also added a second reported-by to reflect the next patch setting in my inbox which was Colin fixing the same thing. Thanks! > --- > drivers/iio/accel/adxl367.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/iio/accel/adxl367.c b/drivers/iio/accel/adxl367.c > index b452d74b1d4d..350a89b61179 100644 > --- a/drivers/iio/accel/adxl367.c > +++ b/drivers/iio/accel/adxl367.c > @@ -884,7 +884,7 @@ static irqreturn_t adxl367_irq_handler(int irq, void *private) > if (ret) > return IRQ_NONE; > > - handled |= adxl367_push_event(indio_dev, status); > + handled = adxl367_push_event(indio_dev, status); > handled |= adxl367_push_fifo_data(indio_dev, status, fifo_entries); > > return handled ? IRQ_HANDLED : IRQ_NONE; > > base-commit: 2be8795a609800e5071d868d459ce29232fce2c8
On Thu, Feb 24, 2022 at 11:25 PM Nathan Chancellor <nathan@kernel.org> wrote: ... > drivers/iio/accel/adxl367.c:879:14: note: initialize the variable 'handled' to silence this warning > bool handled; > ^ > = 0 Bad advice (at minimum it should be false, but in general it might hide a real issue) > 1 error generated.
On Sat, 26 Feb 2022 21:49:16 +0200 Andy Shevchenko <andy.shevchenko@gmail.com> wrote: > On Thu, Feb 24, 2022 at 11:25 PM Nathan Chancellor <nathan@kernel.org> wrote: > > ... > > > drivers/iio/accel/adxl367.c:879:14: note: initialize the variable 'handled' to silence this warning > > bool handled; > > ^ > > > = 0 > > Bad advice (at minimum it should be false, but in general it might > hide a real issue) True. Thankfully Nathan did the right thing and looked for the real problem :) Jonathan > > > 1 error generated. >
diff --git a/drivers/iio/accel/adxl367.c b/drivers/iio/accel/adxl367.c index b452d74b1d4d..350a89b61179 100644 --- a/drivers/iio/accel/adxl367.c +++ b/drivers/iio/accel/adxl367.c @@ -884,7 +884,7 @@ static irqreturn_t adxl367_irq_handler(int irq, void *private) if (ret) return IRQ_NONE; - handled |= adxl367_push_event(indio_dev, status); + handled = adxl367_push_event(indio_dev, status); handled |= adxl367_push_fifo_data(indio_dev, status, fifo_entries); return handled ? IRQ_HANDLED : IRQ_NONE;
Clang warns: drivers/iio/accel/adxl367.c:887:2: error: variable 'handled' is uninitialized when used here [-Werror,-Wuninitialized] handled |= adxl367_push_event(indio_dev, status); ^~~~~~~ drivers/iio/accel/adxl367.c:879:14: note: initialize the variable 'handled' to silence this warning bool handled; ^ = 0 1 error generated. This should have used '=' instead of '|='; make that change to resolve the warning. Fixes: cbab791c5e2a ("iio: accel: add ADXL367 driver") Link: https://github.com/ClangBuiltLinux/linux/issues/1605 Reported-by: kernel test robot <lkp@intel.com> Signed-off-by: Nathan Chancellor <nathan@kernel.org> --- drivers/iio/accel/adxl367.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) base-commit: 2be8795a609800e5071d868d459ce29232fce2c8