aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/rc
diff options
context:
space:
mode:
authorSrinivas Kandagatla <srinivas.kandagatla@linaro.org>2014-09-22 19:22:48 -0300
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>2014-09-23 17:03:58 -0300
commitda8e77f5e945ee92a6225c18f545630e07fc41bc (patch)
tree69638d43c8854f0cc9232dd62da9576d38e722ce /drivers/media/rc
parent[media] media: st-rc: move pm ops setup out of conditional compilation (diff)
downloadlinux-dev-da8e77f5e945ee92a6225c18f545630e07fc41bc.tar.xz
linux-dev-da8e77f5e945ee92a6225c18f545630e07fc41bc.zip
[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>
Diffstat (limited to 'drivers/media/rc')
-rw-r--r--drivers/media/rc/st_rc.c1
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);
static struct platform_driver st_rc_driver = {
.driver = {
.name = IR_ST_NAME,
- .owner = THIS_MODULE,
.of_match_table = of_match_ptr(st_rc_match),
.pm = &st_rc_pm_ops,
},