From: Zou Wei Date: Thu, 27 May 2021 09:54:04 +0000 (+0800) Subject: regulator: bd71815: fix platform_no_drv_owner.cocci warnings X-Git-Tag: v5.14-rc3~34^2~55 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d149b855b955fe92ab16ddd59c1d540f82e6a40f;p=thirdparty%2Fkernel%2Flinux.git regulator: bd71815: fix platform_no_drv_owner.cocci warnings ./drivers/regulator/bd71815-regulator.c:644: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 Reported-by: Hulk Robot Signed-off-by: Zou Wei Acked-by: Matti Vaittinen Message-Id: <1622109244-54739-1-git-send-email-zou_wei@huawei.com> Signed-off-by: Mark Brown --- diff --git a/drivers/regulator/bd71815-regulator.c b/drivers/regulator/bd71815-regulator.c index a079efa800925..4dd21ac24ddf8 100644 --- a/drivers/regulator/bd71815-regulator.c +++ b/drivers/regulator/bd71815-regulator.c @@ -641,7 +641,6 @@ MODULE_DEVICE_TABLE(platform, bd7181x_pmic_id); static struct platform_driver bd7181x_regulator = { .driver = { .name = "bd7181x-pmic", - .owner = THIS_MODULE, }, .probe = bd7181x_probe, .id_table = bd7181x_pmic_id,