Parcourir la source

iio:light:adjd_s311 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>
Jonathan Cameron il y a 12 ans
Parent
commit
80ac4b8aa1
1 fichiers modifiés avec 6 ajouts et 1 suppressions
  1. 6 1
      drivers/iio/light/adjd_s311.c

+ 6 - 1
drivers/iio/light/adjd_s311.c

@@ -155,7 +155,12 @@ static irqreturn_t adjd_s311_trigger_handler(int irq, void *p)
 		BIT(IIO_CHAN_INFO_INT_TIME), \
 	.channel2 = (IIO_MOD_LIGHT_##_color), \
 	.scan_index = (_scan_idx), \
-	.scan_type = IIO_ST('u', 10, 16, 0), \
+	.scan_type = { \
+		.sign = 'u', \
+		.realbits = 10, \
+		.storagebits = 16, \
+		.endianness = IIO_CPU, \
+	}, \
 }
 
 static const struct iio_chan_spec adjd_s311_channels[] = {