From: Alexandru Ardelean Date: Fri, 1 Nov 2019 09:35:01 +0000 (+0200) Subject: iio: imu: adis16480: fix indentation of return statement X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=d9bbae304a3ed9bc51bf4c815dd6aa6ed0fdd118;p=linux.git iio: imu: adis16480: fix indentation of return statement This is just a minor indentation/alignment fix for the default case of a switch statement. Signed-off-by: Alexandru Ardelean Signed-off-by: Jonathan Cameron --- diff --git a/drivers/iio/imu/adis16480.c b/drivers/iio/imu/adis16480.c index 86801f3c5f0db..d199d3d3c4bdf 100644 --- a/drivers/iio/imu/adis16480.c +++ b/drivers/iio/imu/adis16480.c @@ -459,7 +459,7 @@ static int adis16480_get_calibbias(struct iio_dev *indio_dev, *bias = sign_extend32(val32, 31); break; default: - ret = -EINVAL; + ret = -EINVAL; } if (ret)