Commit 5e42916a authored by Jonathan Cameron's avatar Jonathan Cameron Committed by Jonathan Cameron

iio:temperature: drop assignment of iio_info.driver_module

The equivalent of this is now done via macro magic when
the relevant register call is made.  The actual structure
elements will shortly go away.
Signed-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
Reviewed-by: default avatarLars-Peter Clausen <lars@metafoo.de>
parent a62e256b
...@@ -123,7 +123,6 @@ static int temperature_write_raw(struct iio_dev *indio_dev, ...@@ -123,7 +123,6 @@ static int temperature_write_raw(struct iio_dev *indio_dev,
} }
static const struct iio_info temperature_info = { static const struct iio_info temperature_info = {
.driver_module = THIS_MODULE,
.read_raw = &temperature_read_raw, .read_raw = &temperature_read_raw,
.write_raw = &temperature_write_raw, .write_raw = &temperature_write_raw,
}; };
......
...@@ -208,7 +208,6 @@ static int maxim_thermocouple_read_raw(struct iio_dev *indio_dev, ...@@ -208,7 +208,6 @@ static int maxim_thermocouple_read_raw(struct iio_dev *indio_dev,
} }
static const struct iio_info maxim_thermocouple_info = { static const struct iio_info maxim_thermocouple_info = {
.driver_module = THIS_MODULE,
.read_raw = maxim_thermocouple_read_raw, .read_raw = maxim_thermocouple_read_raw,
}; };
......
...@@ -400,7 +400,6 @@ static const struct iio_info mlx90614_info = { ...@@ -400,7 +400,6 @@ static const struct iio_info mlx90614_info = {
.write_raw = mlx90614_write_raw, .write_raw = mlx90614_write_raw,
.write_raw_get_fmt = mlx90614_write_raw_get_fmt, .write_raw_get_fmt = mlx90614_write_raw_get_fmt,
.attrs = &mlx90614_attr_group, .attrs = &mlx90614_attr_group,
.driver_module = THIS_MODULE,
}; };
#ifdef CONFIG_PM #ifdef CONFIG_PM
......
...@@ -179,7 +179,6 @@ static const struct iio_info tmp006_info = { ...@@ -179,7 +179,6 @@ static const struct iio_info tmp006_info = {
.read_raw = tmp006_read_raw, .read_raw = tmp006_read_raw,
.write_raw = tmp006_write_raw, .write_raw = tmp006_write_raw,
.attrs = &tmp006_attribute_group, .attrs = &tmp006_attribute_group,
.driver_module = THIS_MODULE,
}; };
static bool tmp006_check_identification(struct i2c_client *client) static bool tmp006_check_identification(struct i2c_client *client)
......
...@@ -426,7 +426,6 @@ static const struct iio_info tmp007_info = { ...@@ -426,7 +426,6 @@ static const struct iio_info tmp007_info = {
.read_event_value = tmp007_read_thresh, .read_event_value = tmp007_read_thresh,
.write_event_value = tmp007_write_thresh, .write_event_value = tmp007_write_thresh,
.attrs = &tmp007_attribute_group, .attrs = &tmp007_attribute_group,
.driver_module = THIS_MODULE,
}; };
static bool tmp007_identify(struct i2c_client *client) static bool tmp007_identify(struct i2c_client *client)
......
...@@ -111,7 +111,6 @@ static const struct iio_chan_spec tsys01_channels[] = { ...@@ -111,7 +111,6 @@ static const struct iio_chan_spec tsys01_channels[] = {
static const struct iio_info tsys01_info = { static const struct iio_info tsys01_info = {
.read_raw = tsys01_read_raw, .read_raw = tsys01_read_raw,
.driver_module = THIS_MODULE,
}; };
static bool tsys01_crc_valid(u16 *n_prom) static bool tsys01_crc_valid(u16 *n_prom)
......
...@@ -120,7 +120,6 @@ static const struct iio_info tsys02d_info = { ...@@ -120,7 +120,6 @@ static const struct iio_info tsys02d_info = {
.read_raw = tsys02d_read_raw, .read_raw = tsys02d_read_raw,
.write_raw = tsys02d_write_raw, .write_raw = tsys02d_write_raw,
.attrs = &tsys02d_attribute_group, .attrs = &tsys02d_attribute_group,
.driver_module = THIS_MODULE,
}; };
static int tsys02d_probe(struct i2c_client *client, static int tsys02d_probe(struct i2c_client *client,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment