Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 87787e5e authored by Ksenija Stanojevic's avatar Ksenija Stanojevic Committed by Greg Kroah-Hartman
Browse files

Staging: iio: Fix sparse endian warning



Fix following sparse warning:
warning: cast to restricted __be16

Signed-off-by: default avatarKsenija Stanojevic <ksenija.stanojevic@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 29efdd3d
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -21,7 +21,8 @@ static int ad7606_spi_read_block(struct device *dev,
{
	struct spi_device *spi = to_spi_device(dev);
	int i, ret;
	unsigned short *data = buf;
	unsigned short *data;
	__be16 *bdata = buf;

	ret = spi_read(spi, buf, count * 2);
	if (ret < 0) {
@@ -30,7 +31,7 @@ static int ad7606_spi_read_block(struct device *dev,
	}

	for (i = 0; i < count; i++)
		data[i] = be16_to_cpu(data[i]);
		data[i] = be16_to_cpu(bdata[i]);

	return 0;
}