From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752390AbdLCOag (ORCPT ); Sun, 3 Dec 2017 09:30:36 -0500 Received: from mga14.intel.com ([192.55.52.115]:27701 "EHLO mga14.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752136AbdLCOa3 (ORCPT ); Sun, 3 Dec 2017 09:30:29 -0500 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.45,353,1508828400"; d="scan'208";a="180773139" Date: Sun, 3 Dec 2017 22:29:41 +0800 From: kbuild test robot To: =?iso-8859-1?Q?Myl=E8ne?= Josserand Cc: kbuild-all@01.org, dmitry.torokhov@gmail.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 Subject: [PATCH] Input: fix platform_no_drv_owner.cocci warnings Message-ID: <20171203142941.GA56404@lkp-g5.lkp.intel.com> References: <20171201153957.13053-2-mylene.josserand@free-electrons.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20171201153957.13053-2-mylene.josserand@free-electrons.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/cyttsp5.c:1098: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 Fixes: 68d0bd1e4815 ("Input: Add driver for Cypress Generation 5 touchscreen") 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 @@ -1095,7 +1095,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 = of_match_ptr(cyttsp5_of_match), }, .probe = cyttsp5_i2c_probe,