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

Commit e036f71e authored by Alexandre Belloni's avatar Alexandre Belloni Committed by Jonathan Cameron
Browse files

iio: adc: mxs-lradc: fix warning when buidling on avr32



This fixes:
drivers/staging/iio/adc/mxs-lradc.c: In function 'mxs_lradc_probe':
drivers/staging/iio/adc/mxs-lradc.c:1558: warning: comparison of distinct pointer types lacks a cast
drivers/staging/iio/adc/mxs-lradc.c:1558: warning: right shift count >= width of type
drivers/staging/iio/adc/mxs-lradc.c:1558: warning: passing argument 1 of '__div64_32' from incompatible pointer type

When building on avr32.

Reported-by: default avatarFengguang Wu <fengguang.wu@intel.com>
Signed-off-by: default avatarAlexandre Belloni <alexandre.belloni@free-electrons.com>
Signed-off-by: default avatarJonathan Cameron <jic23@kernel.org>
parent d0a588a5
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1527,7 +1527,7 @@ static int mxs_lradc_probe(struct platform_device *pdev)
	struct resource *iores;
	struct resource *iores;
	int ret = 0, touch_ret;
	int ret = 0, touch_ret;
	int i, s;
	int i, s;
	unsigned int scale_uv;
	uint64_t scale_uv;


	/* Allocate the IIO device. */
	/* Allocate the IIO device. */
	iio = devm_iio_device_alloc(dev, sizeof(*lradc));
	iio = devm_iio_device_alloc(dev, sizeof(*lradc));