diff mbox

pwm: fix platform_no_drv_owner.cocci warnings

Message ID 20170412205442.GA69515@lkp-ib03.lkp.intel.com
State Accepted
Headers show

Commit Message

kbuild test robot April 12, 2017, 8:54 p.m. UTC
drivers/pwm/pwm-mediatek.c:210: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

CC: John Crispin <john@phrozen.org>
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
---

 pwm-mediatek.c |    1 -
 1 file changed, 1 deletion(-)

--
To unsubscribe from this list: send the line "unsubscribe linux-pwm" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Comments

Thierry Reding April 13, 2017, 3:28 p.m. UTC | #1
On Thu, Apr 13, 2017 at 04:54:42AM +0800, kbuild test robot wrote:
> drivers/pwm/pwm-mediatek.c:210: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
> 
> CC: John Crispin <john@phrozen.org>
> Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
> ---
> 
>  pwm-mediatek.c |    1 -
>  1 file changed, 1 deletion(-)

Applied, with a slightly modified subject.

Thanks,
Thierry
diff mbox

Patch

--- a/drivers/pwm/pwm-mediatek.c
+++ b/drivers/pwm/pwm-mediatek.c
@@ -207,7 +207,6 @@  MODULE_DEVICE_TABLE(of, mtk_pwm_of_match
 static struct platform_driver mtk_pwm_driver = {
 	.driver = {
 		.name = "mtk-pwm",
-		.owner = THIS_MODULE,
 		.of_match_table = mtk_pwm_of_match,
 	},
 	.probe = mtk_pwm_probe,