提交 ca8d8e03 编写于 作者: W William Breathitt Gray 提交者: Jonathan Cameron

iio: 104-quad-8: Fix off-by-one error when addressing flag register

The flag register is offset by 1 from the respective channel data
register. This patch fixes an off-by-one error when attempting to read a
channel flag register where the base address was not properly offset.

Fixes: 28e5d3bb ("iio: 104-quad-8: Add IIO support for the ACCES 104-QUAD-8")
Signed-off-by: NWilliam Breathitt Gray <vilhelm.gray@gmail.com>
Signed-off-by: NJonathan Cameron <jic23@kernel.org>
上级 17fa2dcb
...@@ -76,7 +76,7 @@ static int quad8_read_raw(struct iio_dev *indio_dev, ...@@ -76,7 +76,7 @@ static int quad8_read_raw(struct iio_dev *indio_dev,
return IIO_VAL_INT; return IIO_VAL_INT;
} }
flags = inb(base_offset); flags = inb(base_offset + 1);
borrow = flags & BIT(0); borrow = flags & BIT(0);
carry = !!(flags & BIT(1)); carry = !!(flags & BIT(1));
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册