staging iio adt7410: fix 13bit mode
authorSascha Hauer <s.hauer@pengutronix.de>
Tue, 3 Jul 2012 09:21:27 +0000 (11:21 +0200)
committerJonathan Cameron <jic23@kernel.org>
Sun, 8 Jul 2012 19:02:25 +0000 (20:02 +0100)
commit1764eff7d5d644310b87d7040c83fe5208c155f7
tree1471b6cff1f04210aa2c833b70ab523477907e5d
parent3a427d184f22e0ebfbed1eb82114ece8fb58bd95
staging iio adt7410: fix 13bit mode

The driver assumes that in 13bit mode the 16bit value has
to be shifted to the right by 3 bits. This is not true, in
both 16bit and 13bit mode the MSB is at the same position.
Currently the driver returns a temperature of 194 degrees
Celsius in 13bit mode and 24 degrees Celsius in 16bit mode.
Fix this by using the same algorithm for 16bit and 13bit
mode and by just masking out the lower three bits in 13bit
mode.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Acked-by: Sonic Zhang <sonic.zhang@analog.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/staging/iio/adc/adt7410.c