public inbox for linux-arm-kernel@lists.infradead.org 
 help / color / mirror / Atom feed
From: Yangtao Li <tiny.windzz@gmail•com>
To: ssantosh@kernel•org, paul@crapouillou•net,
	matthias.bgg@gmail•com, rogerq@ti•com, tony@atomide•com,
	lukasz.luba@arm•com, kgene@kernel•org, krzk@kernel•org,
	thierry.reding@gmail•com, jonathanh@nvidia•com,
	allison@lohutok•net, tglx@linutronix•de, yong.wu@mediatek•com,
	jroedel@suse•de, evgreen@chromium•org, rfontana@redhat•com,
	digetx@gmail•com, pdeschrijver@nvidia•com, john@phrozen•org,
	alexios.zavras@intel•com, sboyd@kernel•org,
	kstewart@linuxfoundation•org, info@metux•net,
	linux-kernel@vger•kernel.org,
	linux-arm-kernel@lists•infradead.org,
	linux-mediatek@lists•infradead.org, linux-omap@vger•kernel.org,
	linux-pm@vger•kernel.org, linux-samsung-soc@vger•kernel.org,
	linux-tegra@vger•kernel.org
Cc: Yangtao Li <tiny.windzz@gmail•com>
Subject: [PATCH 6/9] memory: ti-aemif: convert to devm_platform_ioremap_resource
Date: Sun, 22 Dec 2019 18:50:31 +0000	[thread overview]
Message-ID: <20191222185034.4665-6-tiny.windzz@gmail.com> (raw)
In-Reply-To: <20191222185034.4665-1-tiny.windzz@gmail.com>

Use devm_platform_ioremap_resource() to simplify code.

Signed-off-by: Yangtao Li <tiny.windzz@gmail•com>
---
 drivers/memory/ti-aemif.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/memory/ti-aemif.c b/drivers/memory/ti-aemif.c
index db526dbf71ee..6524229f634a 100644
--- a/drivers/memory/ti-aemif.c
+++ b/drivers/memory/ti-aemif.c
@@ -328,7 +328,6 @@ static int aemif_probe(struct platform_device *pdev)
 {
 	int i;
 	int ret = -ENODEV;
-	struct resource *res;
 	struct device *dev = &pdev->dev;
 	struct device_node *np = dev->of_node;
 	struct device_node *child_np;
@@ -362,8 +361,7 @@ static int aemif_probe(struct platform_device *pdev)
 	else if (pdata)
 		aemif->cs_offset = pdata->cs_offset;
 
-	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	aemif->base = devm_ioremap_resource(dev, res);
+	aemif->base = devm_platform_ioremap_resource(pdev, 0);
 	if (IS_ERR(aemif->base)) {
 		ret = PTR_ERR(aemif->base);
 		goto error;
-- 
2.17.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists•infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  parent reply	other threads:[~2019-12-22 18:52 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-12-22 18:50 [PATCH 1/9] memory: emif: convert to devm_platform_ioremap_resource Yangtao Li
2019-12-22 18:50 ` [PATCH 2/9] memory: jz4780_nemc: " Yangtao Li
2019-12-23 11:44   ` Paul Cercueil
2019-12-22 18:50 ` [PATCH 3/9] memory: mvebu-devbus: " Yangtao Li
2020-01-08  9:41   ` Gregory CLEMENT
2019-12-22 18:50 ` [PATCH 4/9] memory: tegra: " Yangtao Li
2019-12-23 15:42   ` Dmitry Osipenko
2019-12-22 18:50 ` [PATCH 5/9] memory: fsl-corenet-cf: " Yangtao Li
2019-12-22 18:50 ` Yangtao Li [this message]
2019-12-22 18:50 ` [PATCH 7/9] memory: samsung: exynos5422-dmc: " Yangtao Li
2019-12-30  9:13   ` Lukasz Luba
2019-12-30 17:56   ` Krzysztof Kozlowski
2019-12-22 18:50 ` [PATCH 8/9] memory: mtk-smi: " Yangtao Li
2019-12-27  7:24   ` Yong Wu
2019-12-22 18:50 ` [PATCH 9/9] memory: omap-gpmc: switch to platform_get_irq Yangtao Li
2019-12-23  7:25   ` Roger Quadros

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20191222185034.4665-6-tiny.windzz@gmail.com \
    --to=tiny.windzz@gmail$(echo .)com \
    --cc=alexios.zavras@intel$(echo .)com \
    --cc=allison@lohutok$(echo .)net \
    --cc=digetx@gmail$(echo .)com \
    --cc=evgreen@chromium$(echo .)org \
    --cc=info@metux$(echo .)net \
    --cc=john@phrozen$(echo .)org \
    --cc=jonathanh@nvidia$(echo .)com \
    --cc=jroedel@suse$(echo .)de \
    --cc=kgene@kernel$(echo .)org \
    --cc=krzk@kernel$(echo .)org \
    --cc=kstewart@linuxfoundation$(echo .)org \
    --cc=linux-arm-kernel@lists$(echo .)infradead.org \
    --cc=linux-kernel@vger$(echo .)kernel.org \
    --cc=linux-mediatek@lists$(echo .)infradead.org \
    --cc=linux-omap@vger$(echo .)kernel.org \
    --cc=linux-pm@vger$(echo .)kernel.org \
    --cc=linux-samsung-soc@vger$(echo .)kernel.org \
    --cc=linux-tegra@vger$(echo .)kernel.org \
    --cc=lukasz.luba@arm$(echo .)com \
    --cc=matthias.bgg@gmail$(echo .)com \
    --cc=paul@crapouillou$(echo .)net \
    --cc=pdeschrijver@nvidia$(echo .)com \
    --cc=rfontana@redhat$(echo .)com \
    --cc=rogerq@ti$(echo .)com \
    --cc=sboyd@kernel$(echo .)org \
    --cc=ssantosh@kernel$(echo .)org \
    --cc=tglx@linutronix$(echo .)de \
    --cc=thierry.reding@gmail$(echo .)com \
    --cc=tony@atomide$(echo .)com \
    --cc=yong.wu@mediatek$(echo .)com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox