From patchwork Wed Mar 15 05:41:13 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yang Li X-Patchwork-Id: 13175363 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 EA384C61DA4 for ; Wed, 15 Mar 2023 05:42:20 +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:MIME-Version:Message-Id:Date:Subject:Cc :To:From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=/PoHhwZwpGFn4/BkBIuv0hFHEy2XjMd7ITe6WMQBz78=; b=NEKXODU4oy4Fvq X/+EkQS/XcBplBZPKT6kC7Sy9NuXFr9Xn0i0WKg0l8TAwIuvCG4+GLa2s1Kxlxc+ZufOv/JD/xPyG 9g7fLtYFyJl26cUx7GGDnitkDyeQFfEjgDpmAySp0RZryzuXCPAwsdDPM4TQZlrA5philRrTgfBnB Ma+UY8EO6xYpzDgsv7xwU5bXvmxxFM6EYTg0cjRWZ0rhHaY9THRG96OiA/U6+c5EBdA8yFH7kxzJy Qx/unt/TBdw/HHgGogN228ncs4coRVm+NDjzE47iTvNqf2HHUnKG6Qzapr2d8w8BqgH6atk1cfqLP 1PxZhlleMMwvLx9nabjA==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.96 #2 (Red Hat Linux)) id 1pcJtA-00CRMl-2g; Wed, 15 Mar 2023 05:41:28 +0000 Received: from out30-101.freemail.mail.aliyun.com ([115.124.30.101]) by bombadil.infradead.org with esmtps (Exim 4.96 #2 (Red Hat Linux)) id 1pcJt6-00CRKt-0u; Wed, 15 Mar 2023 05:41:26 +0000 X-Alimail-AntiSpam: AC=PASS;BC=-1|-1;BR=01201311R221e4;CH=green;DM=||false|;DS=||;FP=0|-1|-1|-1|0|-1|-1|-1;HT=ay29a033018046056;MF=yang.lee@linux.alibaba.com;NM=1;PH=DS;RN=8;SR=0;TI=SMTPD_---0VduqG3R_1678858874; Received: from localhost(mailfrom:yang.lee@linux.alibaba.com fp:SMTPD_---0VduqG3R_1678858874) by smtp.aliyun-inc.com; Wed, 15 Mar 2023 13:41:15 +0800 From: Yang Li To: ulf.hansson@linaro.org Cc: afaerber@suse.de, mani@kernel.org, linux-mmc@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-actions@lists.infradead.org, linux-kernel@vger.kernel.org, Yang Li Subject: [PATCH -next] mmc: owl-mmc: Use devm_platform_get_and_ioremap_resource() Date: Wed, 15 Mar 2023 13:41:13 +0800 Message-Id: <20230315054113.48898-1-yang.lee@linux.alibaba.com> X-Mailer: git-send-email 2.20.1.7.g153144c MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20230314_224124_520920_56485477 X-CRM114-Status: UNSURE ( 8.20 ) X-CRM114-Notice: Please train this message. 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: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org 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. Signed-off-by: Yang Li Reviewed-by: Manivannan Sadhasivam --- drivers/mmc/host/owl-mmc.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/mmc/host/owl-mmc.c b/drivers/mmc/host/owl-mmc.c index 3dc143b03939..6f9d31a886ba 100644 --- a/drivers/mmc/host/owl-mmc.c +++ b/drivers/mmc/host/owl-mmc.c @@ -578,8 +578,7 @@ static int owl_mmc_probe(struct platform_device *pdev) owl_host->mmc = mmc; spin_lock_init(&owl_host->lock); - res = platform_get_resource(pdev, IORESOURCE_MEM, 0); - owl_host->base = devm_ioremap_resource(&pdev->dev, res); + owl_host->base = devm_platform_get_and_ioremap_resource(pdev, 0, &res); if (IS_ERR(owl_host->base)) { ret = PTR_ERR(owl_host->base); goto err_free_host;