diff options
author | Jonathan Cameron <jic23@kernel.org> | 2017-07-23 18:25:57 +0200 |
---|---|---|
committer | Jonathan Cameron <Jonathan.Cameron@huawei.com> | 2017-08-22 22:29:44 +0200 |
commit | 73bba67096986c9fa5eb62811b09ac9b22876d2c (patch) | |
tree | e62d3143f5e3709b5e2ddcb82d3edccd07a0e478 /drivers/iio/health/max30102.c | |
parent | iio:gyro: drop assign iio_info.driver_module and iio_trigger_ops.owner (diff) | |
download | linux-73bba67096986c9fa5eb62811b09ac9b22876d2c.tar.xz linux-73bba67096986c9fa5eb62811b09ac9b22876d2c.zip |
iio:health: 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/health/max30102.c')
-rw-r--r-- | drivers/iio/health/max30102.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/iio/health/max30102.c b/drivers/iio/health/max30102.c index 839b875c29b9..203ffb9cad6a 100644 --- a/drivers/iio/health/max30102.c +++ b/drivers/iio/health/max30102.c @@ -381,7 +381,6 @@ static int max30102_read_raw(struct iio_dev *indio_dev, } static const struct iio_info max30102_info = { - .driver_module = THIS_MODULE, .read_raw = max30102_read_raw, }; |