Commit 3d8e4400 authored by Brian Masney's avatar Brian Masney Committed by Jonathan Cameron

staging: iio: tsl2x7x: fix alignment of break statements

Correct the alignment of the break statements to match the alignment of
the rest of the code within the case statements.
Signed-off-by: default avatarBrian Masney <masneyb@onstation.org>
Signed-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
parent 271bd2c6
...@@ -466,7 +466,7 @@ static int tsl2x7x_get_prox(struct iio_dev *indio_dev) ...@@ -466,7 +466,7 @@ static int tsl2x7x_get_prox(struct iio_dev *indio_dev)
case tmd2771: case tmd2771:
if (!(ret & TSL2X7X_STA_ADC_VALID)) if (!(ret & TSL2X7X_STA_ADC_VALID))
goto prox_poll_err; goto prox_poll_err;
break; break;
case tsl2572: case tsl2572:
case tsl2672: case tsl2672:
case tmd2672: case tmd2672:
...@@ -474,7 +474,7 @@ static int tsl2x7x_get_prox(struct iio_dev *indio_dev) ...@@ -474,7 +474,7 @@ static int tsl2x7x_get_prox(struct iio_dev *indio_dev)
case tmd2772: case tmd2772:
if (!(ret & TSL2X7X_STA_PRX_VALID)) if (!(ret & TSL2X7X_STA_PRX_VALID))
goto prox_poll_err; goto prox_poll_err;
break; break;
} }
for (i = 0; i < 2; i++) { for (i = 0; i < 2; i++) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment