diff options
| author | kbuild test robot <[email protected]> | 2017-04-14 04:57:35 +0800 |
|---|---|---|
| committer | Mark Brown <[email protected]> | 2017-04-14 17:59:32 +0100 |
| commit | 43594dd453f082d36336ea8338cd9c2d28c1691a (patch) | |
| tree | a96653a4b6e6bef604477b4993c490a87221a407 | |
| parent | 5abca06c21bce9b65c1a9bf8b26d8f1711aca94a (diff) | |
regulator: tps65132: fix platform_no_drv_owner.cocci warnings
drivers/regulator/tps65132-regulator.c:274:3-8: 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
Signed-off-by: Fengguang Wu <[email protected]>
Acked-by: Laxman Dewangan <[email protected]>
Signed-off-by: Mark Brown <[email protected]>
| -rw-r--r-- | drivers/regulator/tps65132-regulator.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/regulator/tps65132-regulator.c b/drivers/regulator/tps65132-regulator.c index a2fc7322f434..73978dd440f7 100644 --- a/drivers/regulator/tps65132-regulator.c +++ b/drivers/regulator/tps65132-regulator.c @@ -271,7 +271,6 @@ MODULE_DEVICE_TABLE(i2c, tps65132_id); static struct i2c_driver tps65132_i2c_driver = { .driver = { .name = "tps65132", - .owner = THIS_MODULE, }, .probe = tps65132_probe, .id_table = tps65132_id, |