提交 c1a75288 编写于 作者: D Dan Carpenter 提交者: Greg Kroah-Hartman

Staging: iio: fix endian conversion in ad7298_scan_direct()

"tmp" is used to store the output from cpu_to_be16() so it should be
a __be16 bit type.
Signed-off-by: NDan Carpenter <dan.carpenter@oracle.com>
Acked-by: NMichael Hennerich <michael.hennerich@analog.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 5ae8f440
......@@ -69,27 +69,28 @@ static int ad7298_scan_direct(struct ad7298_state *st, unsigned ch)
static int ad7298_scan_temp(struct ad7298_state *st, int *val)
{
int tmp, ret;
__be16 buf;
tmp = cpu_to_be16(AD7298_WRITE | AD7298_TSENSE |
buf = cpu_to_be16(AD7298_WRITE | AD7298_TSENSE |
AD7298_TAVG | st->ext_ref);
ret = spi_write(st->spi, (u8 *)&tmp, 2);
ret = spi_write(st->spi, (u8 *)&buf, 2);
if (ret)
return ret;
tmp = 0;
buf = cpu_to_be16(0);
ret = spi_write(st->spi, (u8 *)&tmp, 2);
ret = spi_write(st->spi, (u8 *)&buf, 2);
if (ret)
return ret;
usleep_range(101, 1000); /* sleep > 100us */
ret = spi_read(st->spi, (u8 *)&tmp, 2);
ret = spi_read(st->spi, (u8 *)&buf, 2);
if (ret)
return ret;
tmp = be16_to_cpu(tmp) & RES_MASK(AD7298_BITS);
tmp = be16_to_cpu(buf) & RES_MASK(AD7298_BITS);
/*
* One LSB of the ADC corresponds to 0.25 deg C.
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册