From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751641AbdFSNZx (ORCPT ); Mon, 19 Jun 2017 09:25:53 -0400 Received: from mga14.intel.com ([192.55.52.115]:64439 "EHLO mga14.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751056AbdFSNZa (ORCPT ); Mon, 19 Jun 2017 09:25:30 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.39,361,1493708400"; d="scan'208";a="1184315651" Date: Mon, 19 Jun 2017 21:24:27 +0800 From: kbuild test robot To: Wang Yafei Cc: kbuild-all@01.org, Dmitry Torokhov , Henrik Rydberg , linux-input@vger.kernel.org, andrew@goodix.com, mouse@goodix.com, linux-kernel@vger.kernel.org Subject: [PATCH] Input: fix platform_no_drv_owner.cocci warnings Message-ID: <20170619132427.GA46641@lkp-hsx03.lkp.intel.com> References: <201706192107.ru8ophjW%fengguang.wu@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <33339a02-dac7-9097-9ea4-3c12c7b84a59@goodix.com> User-Agent: Mutt/1.5.23 (2014-03-12) X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: fengguang.wu@intel.com X-SA-Exim-Scanned: No (on bee); SAEximRunCond expanded to false Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org drivers/input/touchscreen/goodix-ts-sunrise/goodix_ts_core.c:1335: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: Wang Yafei Signed-off-by: Fengguang Wu --- goodix_ts_core.c | 1 - 1 file changed, 1 deletion(-) --- a/drivers/input/touchscreen/goodix-ts-sunrise/goodix_ts_core.c +++ b/drivers/input/touchscreen/goodix-ts-sunrise/goodix_ts_core.c @@ -1332,7 +1332,6 @@ MODULE_DEVICE_TABLE(platform, ts_core_id static struct platform_driver goodix_ts_driver = { .driver = { .name = GOODIX_CORE_DRIVER_NAME, - .owner = THIS_MODULE, .pm = &dev_pm_ops, }, .probe = goodix_ts_probe,