From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933275AbbI3S2P (ORCPT ); Wed, 30 Sep 2015 14:28:15 -0400 Received: from mga03.intel.com ([134.134.136.65]:35057 "EHLO mga03.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932796AbbI3S2K (ORCPT ); Wed, 30 Sep 2015 14:28:10 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.17,613,1437462000"; d="scan'208";a="816444424" Date: Thu, 1 Oct 2015 02:26:34 +0800 From: kbuild test robot To: codekipper@gmail.com Cc: kbuild-all@01.org, maxime.ripard@free-electrons.com, lgirdwood@gmail.com, linux-arm-kernel@lists.infradead.org, broonie@kernel.org, linux-sunxi@googlegroups.com, linux-kernel@vger.kernel.org, alsa-devel@alsa-project.org, be17068@iperbole.bo.it, Marcus Cooper Subject: [PATCH] ASOC: sunxi: fix platform_no_drv_owner.cocci warnings Message-ID: <20150930182634.GA150317@lkp-ib03> References: <201510010229.uleM0Oxk%fengguang.wu@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1443635458-8873-5-git-send-email-codekipper@gmail.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 sound/soc/sunxi/sun4i-spdif.c:599: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: Marcus Cooper Signed-off-by: Fengguang Wu --- sun4i-spdif.c | 1 - 1 file changed, 1 deletion(-) --- a/sound/soc/sunxi/sun4i-spdif.c +++ b/sound/soc/sunxi/sun4i-spdif.c @@ -596,7 +596,6 @@ static int sun4i_spdif_remove(struct pla static struct platform_driver sun4i_spdif_driver = { .driver = { .name = "sun4i-spdif", - .owner = THIS_MODULE, .of_match_table = of_match_ptr(sun4i_spdif_of_match), }, .probe = sun4i_spdif_probe,