From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751448AbaLUOW0 (ORCPT ); Sun, 21 Dec 2014 09:22:26 -0500 Received: from mga01.intel.com ([192.55.52.88]:26858 "EHLO mga01.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751058AbaLUOWY (ORCPT ); Sun, 21 Dec 2014 09:22:24 -0500 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.07,617,1413270000"; d="scan'208";a="627338598" Date: Sun, 21 Dec 2014 22:21:17 +0800 From: kbuild test robot To: Aaron Lu Cc: kbuild-all@01.org, Zhang Rui , Eduardo Valentin , linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] Thermal: fix platform_no_drv_owner.cocci warnings Message-ID: <20141221142117.GA32888@athens> References: <201412212210.5BfVGAAA%fengguang.wu@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201412212210.5BfVGAAA%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/thermal/int340x_thermal/int3402_thermal.c:234:6-11: 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: Aaron Lu Signed-off-by: Fengguang Wu --- int3402_thermal.c | 1 - 1 file changed, 1 deletion(-) --- a/drivers/thermal/int340x_thermal/int3402_thermal.c +++ b/drivers/thermal/int340x_thermal/int3402_thermal.c @@ -231,7 +231,6 @@ static struct platform_driver int3402_th .remove = int3402_thermal_remove, .driver = { .name = "int3402 thermal", - .owner = THIS_MODULE, .acpi_match_table = int3402_thermal_match, }, };