diff options
author | Srinivas Kandagatla <srinivas.kandagatla@linaro.org> | 2014-09-22 18:22:48 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2014-09-23 16:03:58 -0400 |
commit | da8e77f5e945ee92a6225c18f545630e07fc41bc (patch) | |
tree | 69638d43c8854f0cc9232dd62da9576d38e722ce | |
parent | cdd9a6316bfb85176aba83e9532fbc46c9588378 (diff) |
[media] media: st-rc: Remove .owner field for driver
There is no need to init .owner field.
Based on the patch from Peter Griffin <peter.griffin@linaro.org>
"mmc: remove .owner field for drivers using module_platform_driver"
This patch removes the superflous .owner field for drivers which
use the module_platform_driver API, as this is overriden in
platform_driver_register anyway."
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Acked-by: Maxime Coquelin <maxime.coquelin@st.com>
Acked-by: Peter Griffin <peter.griffin@linaro.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
-rw-r--r-- | drivers/media/rc/st_rc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/media/rc/st_rc.c b/drivers/media/rc/st_rc.c index 03bbb096cb9b..e309441a266d 100644 --- a/drivers/media/rc/st_rc.c +++ b/drivers/media/rc/st_rc.c | |||
@@ -392,7 +392,6 @@ MODULE_DEVICE_TABLE(of, st_rc_match); | |||
392 | static struct platform_driver st_rc_driver = { | 392 | static struct platform_driver st_rc_driver = { |
393 | .driver = { | 393 | .driver = { |
394 | .name = IR_ST_NAME, | 394 | .name = IR_ST_NAME, |
395 | .owner = THIS_MODULE, | ||
396 | .of_match_table = of_match_ptr(st_rc_match), | 395 | .of_match_table = of_match_ptr(st_rc_match), |
397 | .pm = &st_rc_pm_ops, | 396 | .pm = &st_rc_pm_ops, |
398 | }, | 397 | }, |