1
0
Fork 0

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>
hifive-unleashed-5.1
Gustavo A. R. Silva 2017-08-22 14:13:25 -05:00 committed by Jonathan Cameron
parent dd92d5ea20
commit 4e57562b48
1 changed files with 2 additions and 0 deletions

View File

@ -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;