diff options
author | Krzysztof Kozlowski <k.kozlowski@samsung.com> | 2015-07-10 07:54:14 +0200 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2015-07-11 19:50:07 +0200 |
commit | 2155971a66f89924edb37c213251c4fe9f7776c0 (patch) | |
tree | 42b92eae9067751633fcafd8c4090220053c6a35 /drivers/iio/pressure/st_pressure_i2c.c | |
parent | staging: iio: Drop owner assignment from i2c_driver (diff) | |
download | linux-2155971a66f89924edb37c213251c4fe9f7776c0.tar.xz linux-2155971a66f89924edb37c213251c4fe9f7776c0.zip |
iio: Drop owner assignment from i2c_driver
i2c_driver does not need to set an owner because i2c_register_driver()
will set it.
Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers/iio/pressure/st_pressure_i2c.c')
-rw-r--r-- | drivers/iio/pressure/st_pressure_i2c.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/iio/pressure/st_pressure_i2c.c b/drivers/iio/pressure/st_pressure_i2c.c index 137788bba4a3..8fcf9766eaec 100644 --- a/drivers/iio/pressure/st_pressure_i2c.c +++ b/drivers/iio/pressure/st_pressure_i2c.c @@ -79,7 +79,6 @@ MODULE_DEVICE_TABLE(i2c, st_press_id_table); static struct i2c_driver st_press_driver = { .driver = { - .owner = THIS_MODULE, .name = "st-press-i2c", .of_match_table = of_match_ptr(st_press_of_match), }, |