[PATCH] fix platform_no_drv_owner.cocci warnings

From: kbuild test robot
Date: Mon Feb 20 2017 - 07:05:51 EST


drivers/input/misc/cy8cmbr3102.c:210:4-9: No need to set .owner here. The core will do it.

Remove .owner field if calls are used which set it automatically

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

CC: Patrick Vogelaar <Patrick.Vogelaar@xxxxxxxxxxxxxx>
Signed-off-by: Fengguang Wu <fengguang.wu@xxxxxxxxx>
---

cy8cmbr3102.c | 1 -
1 file changed, 1 deletion(-)

--- a/drivers/input/misc/cy8cmbr3102.c
+++ b/drivers/input/misc/cy8cmbr3102.c
@@ -207,7 +207,6 @@ MODULE_DEVICE_TABLE(of, of_cy8cmbr3102_m
static struct i2c_driver cy8cmbr3102_driver = {
.driver = {
.name = "cy8cmbr3102",
- .owner = THIS_MODULE,
.of_match_table = of_match_ptr(of_cy8cmbr3102_match),
},
.probe = cy8cmbr3102_probe,