diff options
author | Gustavo A. R. Silva <gustavo@embeddedor.com> | 2017-08-22 14:13:25 -0500 |
---|---|---|
committer | Jonathan Cameron <Jonathan.Cameron@huawei.com> | 2017-09-03 18:10:30 +0100 |
commit | 4e57562b4846e42cd1c2e556f0ece18c1154e116 (patch) | |
tree | 21860738bb28c016a8ffa8fe78be3cfe9907ab45 /drivers/iio | |
parent | dd92d5ea20ef8a42be7aeda08c669c586c730451 (diff) | |
download | linux-stable-4e57562b4846e42cd1c2e556f0ece18c1154e116.tar.gz linux-stable-4e57562b4846e42cd1c2e556f0ece18c1154e116.tar.bz2 linux-stable-4e57562b4846e42cd1c2e556f0ece18c1154e116.zip |
iio: imu: inv_mpu6050: fix missing break in switch
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 <gustavo@embeddedor.com>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Diffstat (limited to 'drivers/iio')
-rw-r--r-- | drivers/iio/imu/inv_mpu6050/inv_mpu_core.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/iio/imu/inv_mpu6050/inv_mpu_core.c b/drivers/iio/imu/inv_mpu6050/inv_mpu_core.c index db578e0faaab..097ce1fd6f69 100644 --- a/drivers/iio/imu/inv_mpu6050/inv_mpu_core.c +++ b/drivers/iio/imu/inv_mpu6050/inv_mpu_core.c @@ -542,7 +542,9 @@ static int inv_mpu6050_write_raw(struct iio_dev *indio_dev, break; default: result = -EINVAL; + break; } + break; default: result = -EINVAL; break; |