All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH RESEND 1/3] media: si2165: Remove owner assignment from i2c_driver
@ 2018-04-23 11:42 Fabio Estevam
  2018-04-23 11:42 ` [PATCH RESEND 2/3] media: ov5695: " Fabio Estevam
  2018-04-23 11:42 ` [PATCH RESEND 3/3] media: ov13858: " Fabio Estevam
  0 siblings, 2 replies; 3+ messages in thread
From: Fabio Estevam @ 2018-04-23 11:42 UTC (permalink / raw)
  To: mchehab
  Cc: hverkuil, sakari.ailus, linux-media, Fabio Estevam, Matthias Schwarzott

From: Fabio Estevam <fabio.estevam@nxp.com>

Structure i2c_driver does not need to set the owner field, as this will
be populated by the driver core.

Generated by scripts/coccinelle/api/platform_no_drv_owner.cocci.

Cc: Matthias Schwarzott <zzam@gentoo.org>
Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
Reviewed-by: Matthias Schwarzott <zzam@gentoo.org>
---
 drivers/media/dvb-frontends/si2165.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/media/dvb-frontends/si2165.c b/drivers/media/dvb-frontends/si2165.c
index 2dd336f..d132e3c 100644
--- a/drivers/media/dvb-frontends/si2165.c
+++ b/drivers/media/dvb-frontends/si2165.c
@@ -1299,7 +1299,6 @@ MODULE_DEVICE_TABLE(i2c, si2165_id_table);
 
 static struct i2c_driver si2165_driver = {
 	.driver = {
-		.owner	= THIS_MODULE,
 		.name	= "si2165",
 	},
 	.probe		= si2165_probe,
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH RESEND 2/3] media: ov5695: Remove owner assignment from i2c_driver
  2018-04-23 11:42 [PATCH RESEND 1/3] media: si2165: Remove owner assignment from i2c_driver Fabio Estevam
@ 2018-04-23 11:42 ` Fabio Estevam
  2018-04-23 11:42 ` [PATCH RESEND 3/3] media: ov13858: " Fabio Estevam
  1 sibling, 0 replies; 3+ messages in thread
From: Fabio Estevam @ 2018-04-23 11:42 UTC (permalink / raw)
  To: mchehab
  Cc: hverkuil, sakari.ailus, linux-media, Fabio Estevam, Shunqian Zheng

From: Fabio Estevam <fabio.estevam@nxp.com>

Structure i2c_driver does not need to set the owner field, as this will
be populated by the driver core.

Generated by scripts/coccinelle/api/platform_no_drv_owner.cocci.

Cc: Shunqian Zheng <zhengsq@rock-chips.com>
Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
---
 drivers/media/i2c/ov5695.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/media/i2c/ov5695.c b/drivers/media/i2c/ov5695.c
index 9be38a0..9a80dec 100644
--- a/drivers/media/i2c/ov5695.c
+++ b/drivers/media/i2c/ov5695.c
@@ -1385,7 +1385,6 @@ MODULE_DEVICE_TABLE(of, ov5695_of_match);
 static struct i2c_driver ov5695_i2c_driver = {
 	.driver = {
 		.name = "ov5695",
-		.owner = THIS_MODULE,
 		.pm = &ov5695_pm_ops,
 		.of_match_table = of_match_ptr(ov5695_of_match),
 	},
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH RESEND 3/3] media: ov13858: Remove owner assignment from i2c_driver
  2018-04-23 11:42 [PATCH RESEND 1/3] media: si2165: Remove owner assignment from i2c_driver Fabio Estevam
  2018-04-23 11:42 ` [PATCH RESEND 2/3] media: ov5695: " Fabio Estevam
@ 2018-04-23 11:42 ` Fabio Estevam
  1 sibling, 0 replies; 3+ messages in thread
From: Fabio Estevam @ 2018-04-23 11:42 UTC (permalink / raw)
  To: mchehab; +Cc: hverkuil, sakari.ailus, linux-media, Fabio Estevam, Sakari Ailus

From: Fabio Estevam <fabio.estevam@nxp.com>

Structure i2c_driver does not need to set the owner field, as this will
be populated by the driver core.

Generated by scripts/coccinelle/api/platform_no_drv_owner.cocci.

Cc: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
---
 drivers/media/i2c/ov13858.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/media/i2c/ov13858.c b/drivers/media/i2c/ov13858.c
index 30ee9f7..5b617a7 100644
--- a/drivers/media/i2c/ov13858.c
+++ b/drivers/media/i2c/ov13858.c
@@ -1805,7 +1805,6 @@ MODULE_DEVICE_TABLE(acpi, ov13858_acpi_ids);
 static struct i2c_driver ov13858_i2c_driver = {
 	.driver = {
 		.name = "ov13858",
-		.owner = THIS_MODULE,
 		.pm = &ov13858_pm_ops,
 		.acpi_match_table = ACPI_PTR(ov13858_acpi_ids),
 	},
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-04-23 11:44 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-04-23 11:42 [PATCH RESEND 1/3] media: si2165: Remove owner assignment from i2c_driver Fabio Estevam
2018-04-23 11:42 ` [PATCH RESEND 2/3] media: ov5695: " Fabio Estevam
2018-04-23 11:42 ` [PATCH RESEND 3/3] media: ov13858: " Fabio Estevam

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.