staging:iio:resolver:ad2s1210 fix negative IIO_ANGL_VEL read
authorArnd Bergmann <arnd@arndb.de>
Fri, 14 Jul 2017 09:31:03 +0000 (11:31 +0200)
committerBen Hutchings <ben@decadent.org.uk>
Sat, 11 Nov 2017 13:34:23 +0000 (13:34 +0000)
commit9efc2878cceb846fd9abc4917434370c8cf49056
treee6fa45f42115c643ee36befb6ae88cf07a66df69
parent8ca0b1e2b9956b442e19dadcd7394d62ca57ebb9
staging:iio:resolver:ad2s1210 fix negative IIO_ANGL_VEL read

commit 105967ad68d2eb1a041bc041f9cf96af2a653b65 upstream.

gcc-7 points out an older regression:

drivers/staging/iio/resolver/ad2s1210.c: In function 'ad2s1210_read_raw':
drivers/staging/iio/resolver/ad2s1210.c:515:42: error: '<<' in boolean context, did you mean '<' ? [-Werror=int-in-bool-context]

The original code had 'unsigned short' here, but incorrectly got
converted to 'bool'. This reverts the regression and uses a normal
type instead.

Fixes: 29148543c521 ("staging:iio:resolver:ad2s1210 minimal chan spec conversion.")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
drivers/staging/iio/resolver/ad2s1210.c