From mboxrd@z Thu Jan 1 00:00:00 1970 From: Julia Lawall Subject: [PATCH] input/keyboard: fix platform_no_drv_owner.cocci warnings Date: Sun, 20 Aug 2017 11:19:38 +0200 (CEST) Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Return-path: Sender: linux-kernel-owner@vger.kernel.org To: Takashi Iwai Cc: alsa-devel@alsa-project.org, Dmitry Torokhov , linux-input@vger.kernel.org, linux-kernel@vger.kernel.org, kbuild-all@01.org List-Id: linux-input@vger.kernel.org No need to set .owner here. The core will do it. Generated by: scripts/coccinelle/api/platform_no_drv_owner.cocci Fixes: 52cf590518d7 ("input/keyboard: Add support for Dollar Cove TI power button") Signed-off-by: Julia Lawall Signed-off-by: Fengguang Wu --- dc_ti_pwrbtn.c | 1 - 1 file changed, 1 deletion(-) --- a/drivers/input/keyboard/dc_ti_pwrbtn.c +++ b/drivers/input/keyboard/dc_ti_pwrbtn.c @@ -75,7 +75,6 @@ static int dc_ti_pwrbtn_probe(struct pla static struct platform_driver dc_ti_pwrbtn_driver = { .driver = { .name = DRIVER_NAME, - .owner = THIS_MODULE, }, .probe = dc_ti_pwrbtn_probe, };