aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/iio/light/si1145.c
diff options
context:
space:
mode:
authorJonathan Cameron <jic23@kernel.org>2017-07-23 17:26:00 +0100
committerJonathan Cameron <Jonathan.Cameron@huawei.com>2017-08-22 21:31:57 +0100
commit4166b47c2b4ae38496a6871b3560677705f8edea (patch)
treea2aab66c4a064141836f04fb8ef3772b1bd8078b /drivers/iio/light/si1145.c
parent79978a9bd02b0c2fcf6e8485dcb5ef7ee34f1adb (diff)
downloadkernel_replicant_linux-4166b47c2b4ae38496a6871b3560677705f8edea.tar.gz
kernel_replicant_linux-4166b47c2b4ae38496a6871b3560677705f8edea.tar.bz2
kernel_replicant_linux-4166b47c2b4ae38496a6871b3560677705f8edea.zip
iio:light: drop assign iio_info.driver_module and iio_trigger_ops.owner
The equivalent of both of these are now done via macro magic when the relevant register calls are made. The actual structure elements will shortly go away. Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> Reviewed-by: Lars-Peter Clausen <lars@metafoo.de>
Diffstat (limited to 'drivers/iio/light/si1145.c')
-rw-r--r--drivers/iio/light/si1145.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/iio/light/si1145.c b/drivers/iio/light/si1145.c
index 096034c126a4..76f16f9c7616 100644
--- a/drivers/iio/light/si1145.c
+++ b/drivers/iio/light/si1145.c
@@ -989,14 +989,12 @@ static const struct attribute_group si114x_attribute_group = {
static const struct iio_info si1132_info = {
.read_raw = si1145_read_raw,
.write_raw = si1145_write_raw,
- .driver_module = THIS_MODULE,
.attrs = &si1132_attribute_group,
};
static const struct iio_info si114x_info = {
.read_raw = si1145_read_raw,
.write_raw = si1145_write_raw,
- .driver_module = THIS_MODULE,
.attrs = &si114x_attribute_group,
};
@@ -1237,7 +1235,6 @@ disable:
}
static const struct iio_trigger_ops si1145_trigger_ops = {
- .owner = THIS_MODULE,
.set_trigger_state = si1145_trigger_set_state,
};