[PATCH] staging:iio:adc: fix codestyle

From: Sergey Efimochkin
Date: Sun Dec 16 2018 - 20:46:11 EST


staging:iio:adc: fix codestyle
Signed-off-by: Sergey Efimochkin <efimochkin.sv@xxxxxxxxxxxx>
---
drivers/staging/iio/adc/ad7280a.c | 20 +++++++++-----------
1 file changed, 9 insertions(+), 11 deletions(-)

diff --git a/drivers/staging/iio/adc/ad7280a.c b/drivers/staging/iio/adc/ad7280a.c
index 58420dcb406d..52e12d1201b3 100644
--- a/drivers/staging/iio/adc/ad7280a.c
+++ b/drivers/staging/iio/adc/ad7280a.c
@@ -706,8 +706,8 @@ static irqreturn_t ad7280_event_handler(int irq, void *private)
st->cell_threshhigh)
iio_push_event(indio_dev,
IIO_EVENT_CODE(IIO_VOLTAGE,
- 1,
- 0,
+ 1,
+ 0,
IIO_EV_DIR_RISING,
IIO_EV_TYPE_THRESH,
0, 0, 0),
@@ -716,8 +716,8 @@ static irqreturn_t ad7280_event_handler(int irq, void *private)
st->cell_threshlow)
iio_push_event(indio_dev,
IIO_EVENT_CODE(IIO_VOLTAGE,
- 1,
- 0,
+ 1,
+ 0,
IIO_EV_DIR_FALLING,
IIO_EV_TYPE_THRESH,
0, 0, 0),
@@ -725,18 +725,16 @@ static irqreturn_t ad7280_event_handler(int irq, void *private)
} else {
if (((channels[i] >> 11) & 0xFFF) >= st->aux_threshhigh)
iio_push_event(indio_dev,
- IIO_UNMOD_EVENT_CODE(
- IIO_TEMP,
- 0,
+ IIO_UNMOD_EVENT_CODE(IIO_TEMP,
+ 0,
IIO_EV_TYPE_THRESH,
IIO_EV_DIR_RISING),
iio_get_time_ns(indio_dev));
else if (((channels[i] >> 11) & 0xFFF) <=
st->aux_threshlow)
iio_push_event(indio_dev,
- IIO_UNMOD_EVENT_CODE(
- IIO_TEMP,
- 0,
+ IIO_UNMOD_EVENT_CODE(IIO_TEMP,
+ 0,
IIO_EV_TYPE_THRESH,
IIO_EV_DIR_FALLING),
iio_get_time_ns(indio_dev));
@@ -987,6 +985,6 @@ static struct spi_driver ad7280_driver = {
};
module_spi_driver(ad7280_driver);

-MODULE_AUTHOR("Michael Hennerich <michael.hennerich@xxxxxxxxxx>");
+MODULE_AUTHOR("Michael Hennerich <hennerich@xxxxxxxxxxxxxxxxxxxx>");
MODULE_DESCRIPTION("Analog Devices AD7280A");
MODULE_LICENSE("GPL v2");
--
2.15.1 (Apple Git-101)