diff options
author | Sanjeev Sharma <sanjeev_sharma@mentor.com> | 2014-08-20 05:32:00 -0400 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2014-08-26 16:08:38 -0400 |
commit | 81816affeacfa360bfefabba774774e95f3dcc12 (patch) | |
tree | 0d05462b9373e4d18381db83d4ebf36fdf720d4a /drivers/iio/pressure | |
parent | b4b491c0832ef90a7a5070e5975bc8427f2049ca (diff) |
iio: remove .owner field for driver using module_platform_driver
This patch removes the .owner field for drivers which use the
platform_driver_register api because this is overriden in
_platform_driver_register.
Signed-off-by: Sanjeev Sharma <Sanjeev_Sharma@mentor.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers/iio/pressure')
-rw-r--r-- | drivers/iio/pressure/hid-sensor-press.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/iio/pressure/hid-sensor-press.c b/drivers/iio/pressure/hid-sensor-press.c index 2c0d2a4fed8c..764928682df2 100644 --- a/drivers/iio/pressure/hid-sensor-press.c +++ b/drivers/iio/pressure/hid-sensor-press.c | |||
@@ -382,7 +382,6 @@ static struct platform_driver hid_press_platform_driver = { | |||
382 | .id_table = hid_press_ids, | 382 | .id_table = hid_press_ids, |
383 | .driver = { | 383 | .driver = { |
384 | .name = KBUILD_MODNAME, | 384 | .name = KBUILD_MODNAME, |
385 | .owner = THIS_MODULE, | ||
386 | }, | 385 | }, |
387 | .probe = hid_press_probe, | 386 | .probe = hid_press_probe, |
388 | .remove = hid_press_remove, | 387 | .remove = hid_press_remove, |