From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753175AbbJGAlc (ORCPT ); Tue, 6 Oct 2015 20:41:32 -0400 Received: from mga02.intel.com ([134.134.136.20]:14914 "EHLO mga02.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752397AbbJGAla (ORCPT ); Tue, 6 Oct 2015 20:41:30 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.17,646,1437462000"; d="scan'208";a="820923564" Date: Wed, 7 Oct 2015 08:40:22 +0800 From: kbuild test robot To: Robert Baldyga Cc: kbuild-all@01.org, linux-kernel@vger.kernel.org, Samuel Ortiz , Lauro Ramos Venancio , Aloisio Almeida Jr , linux-nfc@ml01.01.org, linux-wireless@vger.kernel.org Subject: [PATCH] nfc: s3fwrn5: fix platform_no_drv_owner.cocci warnings Message-ID: <20151007004021.GA130523@xian> References: <201510070819.IsIYdbtW%fengguang.wu@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201510070819.IsIYdbtW%fengguang.wu@intel.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/nfc/s3fwrn5/i2c.c:293: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: Robert Baldyga Signed-off-by: Fengguang Wu --- i2c.c | 1 - 1 file changed, 1 deletion(-) --- a/drivers/nfc/s3fwrn5/i2c.c +++ b/drivers/nfc/s3fwrn5/i2c.c @@ -290,7 +290,6 @@ MODULE_DEVICE_TABLE(of, of_s3fwrn5_i2c_m static struct i2c_driver s3fwrn5_i2c_driver = { .driver = { - .owner = THIS_MODULE, .name = S3FWRN5_I2C_DRIVER_NAME, .of_match_table = of_match_ptr(of_s3fwrn5_i2c_match), },