diff options
| author | Fabio Estevam <fabio.estevam@nxp.com> | 2018-04-23 09:07:13 -0300 | 
|---|---|---|
| committer | Boris Brezillon <boris.brezillon@bootlin.com> | 2018-05-03 11:42:31 +0200 | 
| commit | 051529d0c010a07c84fb42626053e4df610857c5 (patch) | |
| tree | deabf4b44196af846768274a449512f8dca6f0ca /drivers/mtd/maps | |
| parent | 27ab41e2c183e960a045c8f3b87b2341a5f10f19 (diff) | |
| download | linux-051529d0c010a07c84fb42626053e4df610857c5.tar.bz2 | |
mtd: maps: pismo: Remove owner assignment from i2c_driver
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.
Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
Signed-off-by: Boris Brezillon <boris.brezillon@bootlin.com>
Diffstat (limited to 'drivers/mtd/maps')
| -rw-r--r-- | drivers/mtd/maps/pismo.c | 1 | 
1 files changed, 0 insertions, 1 deletions
| diff --git a/drivers/mtd/maps/pismo.c b/drivers/mtd/maps/pismo.c index dc6df9abea0b..c065d7995c0a 100644 --- a/drivers/mtd/maps/pismo.c +++ b/drivers/mtd/maps/pismo.c @@ -265,7 +265,6 @@ MODULE_DEVICE_TABLE(i2c, pismo_id);  static struct i2c_driver pismo_driver = {  	.driver	= {  		.name	= "pismo", -		.owner	= THIS_MODULE,  	},  	.probe		= pismo_probe,  	.remove		= pismo_remove, |