diff options
author | kbuild test robot <fengguang.wu@intel.com> | 2017-04-13 16:57:35 -0400 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-04-14 12:59:32 -0400 |
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 <fengguang.wu@intel.com>
Acked-by: Laxman Dewangan <ldewangan@nvidia.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
-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); | |||
271 | static struct i2c_driver tps65132_i2c_driver = { | 271 | static struct i2c_driver tps65132_i2c_driver = { |
272 | .driver = { | 272 | .driver = { |
273 | .name = "tps65132", | 273 | .name = "tps65132", |
274 | .owner = THIS_MODULE, | ||
275 | }, | 274 | }, |
276 | .probe = tps65132_probe, | 275 | .probe = tps65132_probe, |
277 | .id_table = tps65132_id, | 276 | .id_table = tps65132_id, |