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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 38213C74A5B for ; Tue, 14 Mar 2023 13:48:46 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230098AbjCNNsp (ORCPT ); Tue, 14 Mar 2023 09:48:45 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:33634 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231866AbjCNNsU (ORCPT ); Tue, 14 Mar 2023 09:48:20 -0400 Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id BEA8E968DC for ; Tue, 14 Mar 2023 06:45:16 -0700 (PDT) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 397B04B3 for ; Tue, 14 Mar 2023 06:46:00 -0700 (PDT) Received: from e110455-lin.cambridge.arm.com (usa-sjc-imap-foss1.foss.arm.com [10.121.207.14]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id 548363F67D for ; Tue, 14 Mar 2023 06:45:16 -0700 (PDT) Date: Tue, 14 Mar 2023 13:45:06 +0000 From: Liviu Dudau To: Yang Li Cc: airlied@gmail.com, daniel@ffwll.ch, brian.starkey@arm.com, dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH -next 1/2] drm/arm/malidp: Use devm_platform_get_and_ioremap_resource() Message-ID: References: <20230314080231.20212-1-yang.lee@linux.alibaba.com> <20230314080231.20212-2-yang.lee@linux.alibaba.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20230314080231.20212-2-yang.lee@linux.alibaba.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Mar 14, 2023 at 04:02:31PM +0800, Yang Li wrote: > According to commit 890cc39a8799 ("drivers: provide > devm_platform_get_and_ioremap_resource()"), convert > platform_get_resource(), devm_ioremap_resource() to a single > call to devm_platform_get_and_ioremap_resource(), as this is exactly > what this function does. > > Since 'struct platform_device *pdev = to_platform_device(dev)', > 'pdev->dev' is equivalent to 'dev'. > > Signed-off-by: Yang Li Acked-by: Liviu Dudau Thanks for the cleanup! I will pull this patch and the hdlcd one into drm-misc-next by the end of the week. Best regards, Liviu > --- > drivers/gpu/drm/arm/malidp_drv.c | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/drivers/gpu/drm/arm/malidp_drv.c b/drivers/gpu/drm/arm/malidp_drv.c > index cf040e2e9efe..e220bfc85b2e 100644 > --- a/drivers/gpu/drm/arm/malidp_drv.c > +++ b/drivers/gpu/drm/arm/malidp_drv.c > @@ -724,8 +724,7 @@ static int malidp_bind(struct device *dev) > hwdev->hw = (struct malidp_hw *)of_device_get_match_data(dev); > malidp->dev = hwdev; > > - res = platform_get_resource(pdev, IORESOURCE_MEM, 0); > - hwdev->regs = devm_ioremap_resource(dev, res); > + hwdev->regs = devm_platform_get_and_ioremap_resource(pdev, 0, &res); > if (IS_ERR(hwdev->regs)) > return PTR_ERR(hwdev->regs); > > -- > 2.20.1.7.g153144c > -- ==================== | I would like to | | fix the world, | | but they're not | | giving me the | \ source code! / --------------- ¯\_(ツ)_/¯