From: Srinivas Kandagatla Date: Mon, 22 Sep 2014 22:22:48 +0000 (-0300) Subject: [media] media: st-rc: Remove .owner field for driver X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=da8e77f5e945ee92a6225c18f545630e07fc41bc;p=linux-beck.git [media] media: st-rc: Remove .owner field for driver There is no need to init .owner field. Based on the patch from Peter Griffin "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 Acked-by: Maxime Coquelin Acked-by: Peter Griffin Signed-off-by: Mauro Carvalho Chehab --- 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, },