From patchwork Thu Jan 15 09:05:44 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fengguang Wu X-Patchwork-Id: 5637901 Return-Path: X-Original-To: patchwork-alsa-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 0A84EC058D for ; Thu, 15 Jan 2015 09:06:51 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 45F3520165 for ; Thu, 15 Jan 2015 09:06:50 +0000 (UTC) Received: from alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) by mail.kernel.org (Postfix) with ESMTP id 50C3B2012E for ; Thu, 15 Jan 2015 09:06:49 +0000 (UTC) Received: by alsa0.perex.cz (Postfix, from userid 1000) id 5BB1326042B; Thu, 15 Jan 2015 10:06:47 +0100 (CET) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Spam-Status: No, score=-0.9 required=5.0 tests=BAYES_00,NO_DNS_FOR_FROM, SUBJ_OBFU_PUNCT_MANY,UNPARSEABLE_RELAY autolearn=no version=3.3.1 Received: from alsa0.perex.cz (localhost [IPv6:::1]) by alsa0.perex.cz (Postfix) with ESMTP id 542A7260417; Thu, 15 Jan 2015 10:06:44 +0100 (CET) X-Original-To: alsa-devel@alsa-project.org Delivered-To: alsa-devel@alsa-project.org Received: by alsa0.perex.cz (Postfix, from userid 1000) id B0EED260418; Thu, 15 Jan 2015 10:06:43 +0100 (CET) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by alsa0.perex.cz (Postfix) with ESMTP id B0732260411 for ; Thu, 15 Jan 2015 10:06:36 +0100 (CET) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga102.fm.intel.com with ESMTP; 15 Jan 2015 01:06:30 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.09,402,1418112000"; d="scan'208";a="662212391" Received: from bee.sh.intel.com (HELO bee) ([10.239.97.14]) by fmsmga002.fm.intel.com with ESMTP; 15 Jan 2015 01:06:28 -0800 Received: from kbuild by bee with local (Exim 4.83) (envelope-from ) id 1YBgNn-000H09-JJ; Thu, 15 Jan 2015 17:06:27 +0800 Date: Thu, 15 Jan 2015 17:05:44 +0800 From: kbuild test robot To: Yibo Cai Message-ID: <20150115090544.GA9368@waimea> References: <201501151731.Zwvnv4Cu%fengguang.wu@intel.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <201501151731.Zwvnv4Cu%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 Cc: linux-arm-kernel@lists.infradead.org, alsa-devel@alsa-project.org, Takashi Iwai , linux-kernel@vger.kernel.org, Liam Girdwood , Mark Brown , kbuild-all@01.org, Barry Song Subject: [alsa-devel] [PATCH] ASoC: sirf: fix platform_no_drv_owner.cocci warnings X-BeenThere: alsa-devel@alsa-project.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Alsa-devel mailing list for ALSA developers - http://www.alsa-project.org" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: alsa-devel-bounces@alsa-project.org Sender: alsa-devel-bounces@alsa-project.org X-Virus-Scanned: ClamAV using ClamSMTP sound/soc/sirf/sirf-atlas7-cs42xx8.c:192: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: Yibo Cai Signed-off-by: Fengguang Wu --- sirf-atlas7-cs42xx8.c | 1 - 1 file changed, 1 deletion(-) --- a/sound/soc/sirf/sirf-atlas7-cs42xx8.c +++ b/sound/soc/sirf/sirf-atlas7-cs42xx8.c @@ -189,7 +189,6 @@ MODULE_DEVICE_TABLE(of, sirf_hdmi_card_o static struct platform_driver sirf_hdmi_card_driver = { .driver = { .name = "sirf-hdmi-card", - .owner = THIS_MODULE, .pm = &snd_soc_pm_ops, .of_match_table = sirf_hdmi_card_of_match, },