From mboxrd@z Thu Jan 1 00:00:00 1970 From: kbuild test robot Subject: [PATCH] phy: exynos-ufs: fix platform_no_drv_owner.cocci warnings Date: Thu, 1 Oct 2015 16:41:57 +0800 Message-ID: <20151001084157.GA65894@roam> References: <201510011631.Q7UQEJLT%fengguang.wu@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Content-Disposition: inline In-Reply-To: <1443686970-28104-3-git-send-email-alim.akhtar@samsung.com> Sender: linux-scsi-owner@vger.kernel.org To: Alim Akhtar Cc: kbuild-all@01.org, linux-scsi@vger.kernel.org, linux-kernel@vger.kernel.org, JBottomley@odin.com, vinholikatti@gmail.com, amit.daniel@samsung.com, essuuj@gmail.com, devicetree@vger.kernel.org, Kishon Vijay Abraham I List-Id: devicetree@vger.kernel.org drivers/phy/phy-exynos-ufs.c:250: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: Seungwon Jeon Signed-off-by: Fengguang Wu --- phy-exynos-ufs.c | 1 - 1 file changed, 1 deletion(-) --- a/drivers/phy/phy-exynos-ufs.c +++ b/drivers/phy/phy-exynos-ufs.c @@ -247,7 +247,6 @@ static struct platform_driver exynos_ufs .probe = exynos_ufs_phy_probe, .driver = { .name = "exynos-ufs-phy", - .owner = THIS_MODULE, .of_match_table = exynos_ufs_phy_match, }, };