iio: ad_sigma_delta: remove unused IIO channel macros
authorAlexandru Ardelean <alexandru.ardelean@analog.com>
Sat, 21 Mar 2020 09:08:01 +0000 (11:08 +0200)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Sun, 19 Apr 2020 15:56:11 +0000 (16:56 +0100)
Now that all channel SigmaDelta IIO channel macros have been localized,
remove the generic ones.

Signed-off-by: Alexandru Ardelean <alexandru.ardelean@analog.com>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
include/linux/iio/adc/ad_sigma_delta.h

index 5a127c0ed2007baf84cc2b9c7471740c77b9cf6d..a3a838dcf8e4a073da304d48df35de26700334e6 100644 (file)
@@ -133,62 +133,4 @@ void ad_sd_cleanup_buffer_and_trigger(struct iio_dev *indio_dev);
 
 int ad_sd_validate_trigger(struct iio_dev *indio_dev, struct iio_trigger *trig);
 
-#define __AD_SD_CHANNEL(_si, _channel1, _channel2, _address, _bits, \
-       _storagebits, _shift, _extend_name, _type, _mask_all) \
-       { \
-               .type = (_type), \
-               .differential = (_channel2 == -1 ? 0 : 1), \
-               .indexed = 1, \
-               .channel = (_channel1), \
-               .channel2 = (_channel2), \
-               .address = (_address), \
-               .extend_name = (_extend_name), \
-               .info_mask_separate = BIT(IIO_CHAN_INFO_RAW) | \
-                       BIT(IIO_CHAN_INFO_OFFSET), \
-               .info_mask_shared_by_type = BIT(IIO_CHAN_INFO_SCALE), \
-               .info_mask_shared_by_all = _mask_all, \
-               .scan_index = (_si), \
-               .scan_type = { \
-                       .sign = 'u', \
-                       .realbits = (_bits), \
-                       .storagebits = (_storagebits), \
-                       .shift = (_shift), \
-                       .endianness = IIO_BE, \
-               }, \
-       }
-
-#define AD_SD_DIFF_CHANNEL(_si, _channel1, _channel2, _address, _bits, \
-       _storagebits, _shift) \
-       __AD_SD_CHANNEL(_si, _channel1, _channel2, _address, _bits, \
-               _storagebits, _shift, NULL, IIO_VOLTAGE, \
-               BIT(IIO_CHAN_INFO_SAMP_FREQ))
-
-#define AD_SD_SHORTED_CHANNEL(_si, _channel, _address, _bits, \
-       _storagebits, _shift) \
-       __AD_SD_CHANNEL(_si, _channel, _channel, _address, _bits, \
-               _storagebits, _shift, "shorted", IIO_VOLTAGE, \
-               BIT(IIO_CHAN_INFO_SAMP_FREQ))
-
-#define AD_SD_CHANNEL(_si, _channel, _address, _bits, \
-       _storagebits, _shift) \
-       __AD_SD_CHANNEL(_si, _channel, -1, _address, _bits, \
-               _storagebits, _shift, NULL, IIO_VOLTAGE, \
-                BIT(IIO_CHAN_INFO_SAMP_FREQ))
-
-#define AD_SD_CHANNEL_NO_SAMP_FREQ(_si, _channel, _address, _bits, \
-       _storagebits, _shift) \
-       __AD_SD_CHANNEL(_si, _channel, -1, _address, _bits, \
-               _storagebits, _shift, NULL, IIO_VOLTAGE, 0)
-
-#define AD_SD_TEMP_CHANNEL(_si, _address, _bits, _storagebits, _shift) \
-       __AD_SD_CHANNEL(_si, 0, -1, _address, _bits, \
-               _storagebits, _shift, NULL, IIO_TEMP, \
-               BIT(IIO_CHAN_INFO_SAMP_FREQ))
-
-#define AD_SD_SUPPLY_CHANNEL(_si, _channel, _address, _bits, _storagebits, \
-       _shift) \
-       __AD_SD_CHANNEL(_si, _channel, -1, _address, _bits, \
-               _storagebits, _shift, "supply", IIO_VOLTAGE, \
-               BIT(IIO_CHAN_INFO_SAMP_FREQ))
-
 #endif