From: Guenter Roeck Date: Thu, 31 Jan 2013 21:43:00 +0000 (+0000) Subject: iio/adc: (max1363) Fix data conversion problems X-Git-Url: http://git.mmlx.us/?a=commitdiff_plain;h=482bb4e6c648a68598cde9d4a56b066df26d5ae6;p=linux-edison.git iio/adc: (max1363) Fix data conversion problems For chips with more than 8 bit ADC resolution, received data was always masked against 0xfff, ie with a 12 bit mask. This can result in bad data for chips with 10 bit resolution if those chips have higher bits set (seen with MAX1139). The receive buffer was defined as char array. This could result in unintentional sign extensions if the upper bit in a received byte was set. Since the chip is configured for unipolar mode, we never have to handle negative values, and sign extensions are never needed. Signed-off-by: Guenter Roeck Signed-off-by: Jonathan Cameron --- diff --git a/drivers/iio/adc/max1363.c b/drivers/iio/adc/max1363.c index 77c123fcd0d..46732380566 100644 --- a/drivers/iio/adc/max1363.c +++ b/drivers/iio/adc/max1363.c @@ -335,7 +335,7 @@ static int max1363_read_single_chan(struct iio_dev *indio_dev, { int ret = 0; s32 data; - char rxbuf[2]; + u8 rxbuf[2]; struct max1363_state *st = iio_priv(indio_dev); struct i2c_client *client = st->client; @@ -367,7 +367,8 @@ static int max1363_read_single_chan(struct iio_dev *indio_dev, ret = data; goto error_ret; } - data = (s32)(rxbuf[1]) | ((s32)(rxbuf[0] & 0x0F)) << 8; + data = (rxbuf[1] | rxbuf[0] << 8) & + ((1 << st->chip_info->bits) - 1); } else { /* Get reading */ data = i2c_master_recv(client, rxbuf, 1);