From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 63956C4167B for ; Sun, 1 Jan 2023 05:31:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:References: Message-ID:Subject:Cc:To:From:Date:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=vT8RMjue+gqDghvBqDbP8nc8n7TSvwlWFZceoW79tjg=; b=Akg9eBEtEMZUwx uKNrs44nJpDNReTLJrrq7bUAh1z0Av1ibnBuXbj0G+1dXxk1T7k5bai3nxg3jI9D8NBJbpV3uUZv/ fxtKyzCr3KpQZ+7vw6R2TBlV7h6M54S/2BnOrt2m9QVjQ+qVwaw4g1JdeAYmY3dzeMFIkMZ3gd4rX IFnU7/7+FitKLTkEe1Vd9QM/rawmcFa/LXGua7AGOElx1dw4I1L2cKE/PP0rsgApr9x2z1Mk++WeI E4PffKYx5U0WR0LDoCaf0sUNipC2NiDP/GbHvsLhozS1J4nBTEVy+E4KWCjMboBpbINQsk/8xdnT2 e/dl0vL5HWdtDq8/eFkg==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1pBqv7-00Ehx7-52; Sun, 01 Jan 2023 05:30:05 +0000 Received: from dfw.source.kernel.org ([139.178.84.217]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1pBqv3-00Ehvn-8p for linux-arm-kernel@lists.infradead.org; Sun, 01 Jan 2023 05:30:03 +0000 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id AAF2E60CFB; Sun, 1 Jan 2023 05:30:00 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id CAE22C433EF; Sun, 1 Jan 2023 05:29:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1672551000; bh=q0VqIRoHyqhDGlF24ZE7eHTjVVVmPfleCXKlnlZNoZI=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=CnyyH6VmV9dlBYipdkaIqqqei1FSzLaUbu+JHhx/DDJ00sfjBzV6TN6ud0dLbeX0N C34Dr5RfBhTb0cpsFh51v8BcLBZCHd5sdJ09BnSIprcGfdEnl8LiPdXy4UD0EIrWjh AE791tjBX7k3omUDMZBiU0arWykuZymX773fAjXaBWdyF9RevmIrqltIkb1HW8ympy 79JEaQrAuotan+k8EXA91UXu5rQ4FABRZEBOa4L4PGUyDs4nku+um1K/fFjuPY/EaF JR2e3rOQc3bw35brbcxTH5U3d/HIfty4mIOZkEq47IcPtn6Rv5j66s3Kzz2q4MHsLJ Vq32q7+B0/c6w== Date: Sun, 1 Jan 2023 13:29:53 +0800 From: Shawn Guo To: Deepak R Varma Cc: Sascha Hauer , Pengutronix Kernel Team , Fabio Estevam , NXP Linux Team , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Saurabh Singh Sengar , Praveen Kumar Subject: Re: [PATCH] soc: imx: imx93-src: No need to set device_driver owner Message-ID: <20230101052953.GA6112@T480> References: MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.9.4 (2018-02-28) X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20221231_213001_409057_29C9A3E4 X-CRM114-Status: GOOD ( 11.39 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Thu, Dec 22, 2022 at 11:27:03PM +0530, Deepak R Varma wrote: > There is no need to exclusively set the .owner member of the struct > device_driver when defining the platform_driver struct. The Linux core > takes care of setting the .owner member as part of the call to > module_platform_driver() helper function. > > Issue identified using the platform_no_drv_owner.cocci Coccinelle > semantic patch. > > Signed-off-by: Deepak R Varma Applied, thanks! _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel