Re: [PATCH] iio: imu: inv_mpu6050: fix missing break in switch

2017-09-03 Thread Jonathan Cameron
On Wed, 23 Aug 2017 08:41:43 +0200 (CEST) Peter Meerwald-Stadler wrote: > > Add missing break statement to prevent the code for case > > IIO_CHAN_INFO_CALIBBIAS falling through to the default case. > > > > Also, add a break to the default case for the switch within > > case

Re: [PATCH] iio: imu: inv_mpu6050: fix missing break in switch

2017-09-03 Thread Jonathan Cameron
On Wed, 23 Aug 2017 08:41:43 +0200 (CEST) Peter Meerwald-Stadler wrote: > > Add missing break statement to prevent the code for case > > IIO_CHAN_INFO_CALIBBIAS falling through to the default case. > > > > Also, add a break to the default case for the switch within > > case

Re: [PATCH] iio: imu: inv_mpu6050: fix missing break in switch

2017-08-23 Thread Peter Meerwald-Stadler
> Add missing break statement to prevent the code for case > IIO_CHAN_INFO_CALIBBIAS falling through to the default case. > > Also, add a break to the default case for the switch within > case IIO_CHAN_INFO_CALIBBIAS. fix seems to be cosmetic only... > Addresses-Coverity-ID: 1357377 >

Re: [PATCH] iio: imu: inv_mpu6050: fix missing break in switch

2017-08-23 Thread Peter Meerwald-Stadler
> Add missing break statement to prevent the code for case > IIO_CHAN_INFO_CALIBBIAS falling through to the default case. > > Also, add a break to the default case for the switch within > case IIO_CHAN_INFO_CALIBBIAS. fix seems to be cosmetic only... > Addresses-Coverity-ID: 1357377 >

[PATCH] iio: imu: inv_mpu6050: fix missing break in switch

2017-08-22 Thread Gustavo A. R. Silva
Add missing break statement to prevent the code for case IIO_CHAN_INFO_CALIBBIAS falling through to the default case. Also, add a break to the default case for the switch within case IIO_CHAN_INFO_CALIBBIAS. Addresses-Coverity-ID: 1357377 Signed-off-by: Gustavo A. R. Silva

[PATCH] iio: imu: inv_mpu6050: fix missing break in switch

2017-08-22 Thread Gustavo A. R. Silva
Add missing break statement to prevent the code for case IIO_CHAN_INFO_CALIBBIAS falling through to the default case. Also, add a break to the default case for the switch within case IIO_CHAN_INFO_CALIBBIAS. Addresses-Coverity-ID: 1357377 Signed-off-by: Gustavo A. R. Silva --- This issue was