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: Jonathan Cameron <jic23@kernel.org> Acked-by: Lars-Peter Clausen <lars@metafoo.de>
This commit is contained in:
parent
80ac4b8aa1
commit
6b25f6e6b7
1 changed files with 6 additions and 1 deletions
|
@ -67,7 +67,12 @@ struct tcs3472_data {
|
||||||
.channel2 = IIO_MOD_LIGHT_##_color, \
|
.channel2 = IIO_MOD_LIGHT_##_color, \
|
||||||
.address = _addr, \
|
.address = _addr, \
|
||||||
.scan_index = _si, \
|
.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 };
|
static const int tcs3472_agains[] = { 1, 4, 16, 60 };
|
||||||
|
|
Loading…
Add table
Reference in a new issue