Skip to content

Commit

Permalink
iio:humidity: drop assign iio_info.driver_module and iio_trigger_ops.…
Browse files Browse the repository at this point in the history
…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 <[email protected]>
Reviewed-by: Lars-Peter Clausen <[email protected]>
  • Loading branch information
jic23 committed Aug 22, 2017
1 parent 73bba67 commit 13a8c6c
Show file tree
Hide file tree
Showing 9 changed files with 0 additions and 9 deletions.
1 change: 0 additions & 1 deletion drivers/iio/humidity/am2315.c
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,6 @@ static int am2315_read_raw(struct iio_dev *indio_dev,
}

static const struct iio_info am2315_info = {
.driver_module = THIS_MODULE,
.read_raw = am2315_read_raw,
};

Expand Down
1 change: 0 additions & 1 deletion drivers/iio/humidity/dht11.c
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,6 @@ static int dht11_read_raw(struct iio_dev *iio_dev,
}

static const struct iio_info dht11_iio_info = {
.driver_module = THIS_MODULE,
.read_raw = dht11_read_raw,
};

Expand Down
1 change: 0 additions & 1 deletion drivers/iio/humidity/hdc100x.c
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,6 @@ static const struct iio_info hdc100x_info = {
.read_raw = hdc100x_read_raw,
.write_raw = hdc100x_write_raw,
.attrs = &hdc100x_attribute_group,
.driver_module = THIS_MODULE,
};

static int hdc100x_probe(struct i2c_client *client,
Expand Down
1 change: 0 additions & 1 deletion drivers/iio/humidity/hid-sensor-humidity.c
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@ static int humidity_write_raw(struct iio_dev *indio_dev,
}

static const struct iio_info humidity_info = {
.driver_module = THIS_MODULE,
.read_raw = &humidity_read_raw,
.write_raw = &humidity_write_raw,
};
Expand Down
1 change: 0 additions & 1 deletion drivers/iio/humidity/hts221_buffer.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ static int hts221_trig_set_state(struct iio_trigger *trig, bool state)
}

static const struct iio_trigger_ops hts221_trigger_ops = {
.owner = THIS_MODULE,
.set_trigger_state = hts221_trig_set_state,
};

Expand Down
1 change: 0 additions & 1 deletion drivers/iio/humidity/hts221_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,6 @@ static const struct attribute_group hts221_attribute_group = {
};

static const struct iio_info hts221_info = {
.driver_module = THIS_MODULE,
.attrs = &hts221_attribute_group,
.read_raw = hts221_read_raw,
.write_raw = hts221_write_raw,
Expand Down
1 change: 0 additions & 1 deletion drivers/iio/humidity/htu21.c
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,6 @@ static const struct iio_info htu21_info = {
.read_raw = htu21_read_raw,
.write_raw = htu21_write_raw,
.attrs = &htu21_attribute_group,
.driver_module = THIS_MODULE,
};

static int htu21_probe(struct i2c_client *client,
Expand Down
1 change: 0 additions & 1 deletion drivers/iio/humidity/si7005.c
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,6 @@ static const struct iio_chan_spec si7005_channels[] = {

static const struct iio_info si7005_info = {
.read_raw = si7005_read_raw,
.driver_module = THIS_MODULE,
};

static int si7005_probe(struct i2c_client *client,
Expand Down
1 change: 0 additions & 1 deletion drivers/iio/humidity/si7020.c
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ static const struct iio_chan_spec si7020_channels[] = {

static const struct iio_info si7020_info = {
.read_raw = si7020_read_raw,
.driver_module = THIS_MODULE,
};

static int si7020_probe(struct i2c_client *client,
Expand Down

0 comments on commit 13a8c6c

Please sign in to comment.