diff options
author | Sean Nyekjaer <sean@geanix.com> | 2019-07-15 09:07:15 +0200 |
---|---|---|
committer | Jonathan Cameron <Jonathan.Cameron@huawei.com> | 2019-07-27 22:55:27 +0100 |
commit | ec76d918f23034f9f662539ca9c64e2ae3ba9fba (patch) | |
tree | c9f8a1360ede167907c47ae797cc2a9a853edee1 /drivers/iio | |
parent | 2660b0080bb26506d2f12983485deb9d0cf2747c (diff) | |
download | linux-ec76d918f23034f9f662539ca9c64e2ae3ba9fba.tar.gz linux-ec76d918f23034f9f662539ca9c64e2ae3ba9fba.tar.bz2 linux-ec76d918f23034f9f662539ca9c64e2ae3ba9fba.zip |
iio: imu: st_lsm6dsx: flip irq return logic
No need for using reverse logic in the irq return,
fix this by flip things around.
Signed-off-by: Sean Nyekjaer <sean@geanix.com>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Diffstat (limited to 'drivers/iio')
-rw-r--r-- | drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_buffer.c b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_buffer.c index 38194f4d2b7e..1be1cec2ab23 100644 --- a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_buffer.c +++ b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_buffer.c @@ -670,7 +670,7 @@ static irqreturn_t st_lsm6dsx_handler_thread(int irq, void *private) count = hw->settings->fifo_ops.read_fifo(hw); mutex_unlock(&hw->fifo_lock); - return !count ? IRQ_NONE : IRQ_HANDLED; + return count ? IRQ_HANDLED : IRQ_NONE; } static int st_lsm6dsx_buffer_preenable(struct iio_dev *iio_dev) |