diff options
author | Jonathan Cameron <jic23@kernel.org> | 2017-07-23 18:26:06 +0200 |
---|---|---|
committer | Jonathan Cameron <Jonathan.Cameron@huawei.com> | 2017-08-22 23:14:51 +0200 |
commit | a62e256b1438e3d43293bc71fd0ebb064cb0c51d (patch) | |
tree | 6010478a6586b60caf15d9c5e3b8ae44342ef02c /drivers/iio/proximity/sx9500.c | |
parent | iio:pressure: drop assign iio_info.driver_module and iio_trigger_ops.owner (diff) | |
download | linux-a62e256b1438e3d43293bc71fd0ebb064cb0c51d.tar.xz linux-a62e256b1438e3d43293bc71fd0ebb064cb0c51d.zip |
iio:proximity: 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/proximity/sx9500.c')
-rw-r--r-- | drivers/iio/proximity/sx9500.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/iio/proximity/sx9500.c b/drivers/iio/proximity/sx9500.c index f42b3a1c75ff..53c5d653e780 100644 --- a/drivers/iio/proximity/sx9500.c +++ b/drivers/iio/proximity/sx9500.c @@ -615,7 +615,6 @@ static const struct attribute_group sx9500_attribute_group = { }; static const struct iio_info sx9500_info = { - .driver_module = THIS_MODULE, .attrs = &sx9500_attribute_group, .read_raw = &sx9500_read_raw, .write_raw = &sx9500_write_raw, @@ -650,7 +649,6 @@ out: static const struct iio_trigger_ops sx9500_trigger_ops = { .set_trigger_state = sx9500_set_trigger_state, - .owner = THIS_MODULE, }; static irqreturn_t sx9500_trigger_handler(int irq, void *private) |