From mboxrd@z Thu Jan 1 00:00:00 1970 From: kbuild test robot Subject: [PATCH] Input: fix platform_no_drv_owner.cocci warnings Date: Tue, 30 May 2017 01:16:21 +0800 Message-ID: <20170529171620.GA56706@lkp-hsx03.lkp.intel.com> References: <201705300154.RtG0si2X%fengguang.wu@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Return-path: Content-Disposition: inline In-Reply-To: <20170529144538.29187-2-mylene.josserand@free-electrons.com> Sender: linux-kernel-owner@vger.kernel.org Cc: kbuild-all@01.org, dmitry.torokhov@gmail.com, fery@cypress.com, robh+dt@kernel.org, mark.rutland@arm.com, linux-kernel@vger.kernel.org, linux-input@vger.kernel.org, devicetree@vger.kernel.org, mylene.josserand@free-electrons.com, thomas.petazzoni@free-electrons.com, maxime.ripard@free-electrons.com List-Id: devicetree@vger.kernel.org drivers/input/touchscreen/cyttsp5.c:1162: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: Mylène Josserand Signed-off-by: Fengguang Wu --- cyttsp5.c | 1 - 1 file changed, 1 deletion(-) --- a/drivers/input/touchscreen/cyttsp5.c +++ b/drivers/input/touchscreen/cyttsp5.c @@ -1159,7 +1159,6 @@ static int cyttsp5_i2c_remove(struct i2c static struct i2c_driver cyttsp5_i2c_driver = { .driver = { .name = CYTTSP5_NAME, - .owner = THIS_MODULE, .of_match_table = cyttsp5_of_match, }, .probe = cyttsp5_i2c_probe,