iio:drop IIO_ST macro
authorJonathan Cameron <jic23@kernel.org>
Tue, 12 Nov 2013 18:45:00 +0000 (18:45 +0000)
committerJonathan Cameron <jic23@kernel.org>
Sat, 15 Feb 2014 10:58:17 +0000 (10:58 +0000)
This macro no longer allows all the elements of the scan_type structure
to be set.  Missinterpretation of the parameters also caused a couple of
recent bugs.  No mainline drivers now use this macro so drop it.

Signed-off-by: Jonathan Cameron <jic23@kernel.org>
include/linux/iio/iio.h

index 75a8a20c8179130871dac93a9655d7ecfdbb360f..5f2d00e7e488a7135023ec8f3b2a6f1a46ddeb44 100644 (file)
@@ -254,12 +254,16 @@ static inline bool iio_channel_has_info(const struct iio_chan_spec *chan,
                (chan->info_mask_shared_by_all & BIT(type));
 }
 
-#define IIO_ST(si, rb, sb, sh)                                         \
-       { .sign = si, .realbits = rb, .storagebits = sb, .shift = sh }
-
-#define IIO_CHAN_SOFT_TIMESTAMP(_si)                                   \
-       { .type = IIO_TIMESTAMP, .channel = -1,                         \
-                       .scan_index = _si, .scan_type = IIO_ST('s', 64, 64, 0) }
+#define IIO_CHAN_SOFT_TIMESTAMP(_si) {                                 \
+       .type = IIO_TIMESTAMP,                                          \
+       .channel = -1,                                                  \
+       .scan_index = _si,                                              \
+       .scan_type = {                                                  \
+               .sign = 's',                                            \
+               .realbits = 64,                                 \
+               .storagebits = 64,                                      \
+               },                                                      \
+}
 
 /**
  * iio_get_time_ns() - utility function to get a time stamp for events etc