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

Commit 6b25f6e6 authored by Jonathan Cameron's avatar Jonathan Cameron
Browse files

iio:light:tcs3472 replaces IIO_ST macro with explicit entries to struct scan_type



IIO_ST is going away as it is a pain to maintain.

Signed-off-by: default avatarJonathan Cameron <jic23@kernel.org>
Acked-by: default avatarLars-Peter Clausen <lars@metafoo.de>
parent 80ac4b8a
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -67,7 +67,12 @@ struct tcs3472_data {
	.channel2 = IIO_MOD_LIGHT_##_color, \
	.address = _addr, \
	.scan_index = _si, \
	.scan_type = IIO_ST('u', 16, 16, 0), \
	.scan_type = { \
		.sign = 'u', \
		.realbits = 16, \
		.storagebits = 16, \
		.endianness = IIO_CPU, \
	}, \
}

static const int tcs3472_agains[] = { 1, 4, 16, 60 };