aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Elfring <elfring@users.sourceforge.net>2016-08-15 04:30:31 -0400
committerMark Brown <broonie@kernel.org>2016-08-15 08:46:55 -0400
commit556ae220ac64b6564be8d76d855e26b65fcf75bf (patch)
tree010f770197679a98e3c1b65e0777240234f85148
parent29b4817d4018df78086157ea3a55c1d9424a7cfc (diff)
regulator: rk808: Delete owner assignment
The field "owner" is set by core. Thus delete an extra initialisation. Generated by: scripts/coccinelle/api/platform_no_drv_owner.cocci Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r--drivers/regulator/rk808-regulator.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/regulator/rk808-regulator.c b/drivers/regulator/rk808-regulator.c
index 40d07ba036e7..a6767494d39b 100644
--- a/drivers/regulator/rk808-regulator.c
+++ b/drivers/regulator/rk808-regulator.c
@@ -533,8 +533,7 @@ static int rk808_regulator_probe(struct platform_device *pdev)
533static struct platform_driver rk808_regulator_driver = { 533static struct platform_driver rk808_regulator_driver = {
534 .probe = rk808_regulator_probe, 534 .probe = rk808_regulator_probe,
535 .driver = { 535 .driver = {
536 .name = "rk808-regulator", 536 .name = "rk808-regulator"
537 .owner = THIS_MODULE,
538 }, 537 },
539}; 538};
540 539