From: Yangtao Li <tiny.windzz@gmail.com> To: khilman@baylibre.com, leoyang.li@nxp.com, khalasa@piap.pl, john@phrozen.org, matthias.bgg@gmail.com, agross@kernel.org, bjorn.andersson@linaro.org, kgene@kernel.org, krzk@kernel.org, mripard@kernel.org, wens@csie.org, ssantosh@kernel.org, jun.nie@linaro.org, shawnguo@kernel.org Cc: linux-arm-kernel@lists.infradead.org, linux-amlogic@lists.infradead.org, linux-kernel@vger.kernel.org, linuxppc-dev@lists.ozlabs.org, linux-mips@vger.kernel.org, linux-mediatek@lists.infradead.org, linux-arm-msm@vger.kernel.org, linux-samsung-soc@vger.kernel.org, Yangtao Li <tiny.windzz@gmail.com> Subject: [PATCH 06/10] soc: mediatek: convert to devm_platform_ioremap_resource Date: Sat, 14 Dec 2019 17:54:43 +0000 [thread overview] Message-ID: <20191214175447.25482-6-tiny.windzz@gmail.com> (raw) In-Reply-To: <20191214175447.25482-1-tiny.windzz@gmail.com> Use devm_platform_ioremap_resource() to simplify code. Signed-off-by: Yangtao Li <tiny.windzz@gmail.com> --- drivers/soc/mediatek/mtk-scpsys.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/drivers/soc/mediatek/mtk-scpsys.c b/drivers/soc/mediatek/mtk-scpsys.c index f669d3754627..2aa2afdc9ccf 100644 --- a/drivers/soc/mediatek/mtk-scpsys.c +++ b/drivers/soc/mediatek/mtk-scpsys.c @@ -425,7 +425,6 @@ static struct scp *init_scp(struct platform_device *pdev, bool bus_prot_reg_update) { struct genpd_onecell_data *pd_data; - struct resource *res; int i, j; struct scp *scp; struct clk *clk[CLK_MAX]; @@ -441,8 +440,7 @@ static struct scp *init_scp(struct platform_device *pdev, scp->dev = &pdev->dev; - res = platform_get_resource(pdev, IORESOURCE_MEM, 0); - scp->base = devm_ioremap_resource(&pdev->dev, res); + scp->base = devm_platform_ioremap_resource(pdev, 0); if (IS_ERR(scp->base)) return ERR_CAST(scp->base); -- 2.17.1
next prev parent reply other threads:[~2019-12-14 17:55 UTC|newest] Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top 2019-12-14 17:54 [PATCH 01/10] soc: sunxi: " Yangtao Li 2019-12-14 17:54 ` [PATCH 02/10] soc: samsung: " Yangtao Li 2019-12-15 11:57 ` Krzysztof Kozlowski 2019-12-14 17:54 ` [PATCH 03/10] soc: amlogic: " Yangtao Li 2019-12-14 17:54 ` [PATCH 04/10] soc: zte: " Yangtao Li 2019-12-14 17:54 ` [PATCH 05/10] soc: fsl: " Yangtao Li 2019-12-14 17:54 ` Yangtao Li [this message] 2019-12-14 17:54 ` [PATCH 07/10] soc: ti: wkup_m3_ipc: " Yangtao Li 2019-12-14 17:54 ` [PATCH 08/10] soc: lantiq: " Yangtao Li 2020-01-13 19:10 ` Paul Burton 2019-12-14 17:54 ` [PATCH 09/10] soc: ixp4xx: qmgr: " Yangtao Li 2019-12-14 17:54 ` [PATCH 10/10] soc: qcom: " Yangtao Li 2019-12-15 10:48 ` Marc Zyngier 2019-12-15 12:00 ` Frank Lee 2019-12-18 2:45 ` [PATCH 01/10] soc: sunxi: " Chen-Yu Tsai
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=20191214175447.25482-6-tiny.windzz@gmail.com \ --to=tiny.windzz@gmail.com \ --cc=agross@kernel.org \ --cc=bjorn.andersson@linaro.org \ --cc=john@phrozen.org \ --cc=jun.nie@linaro.org \ --cc=kgene@kernel.org \ --cc=khalasa@piap.pl \ --cc=khilman@baylibre.com \ --cc=krzk@kernel.org \ --cc=leoyang.li@nxp.com \ --cc=linux-amlogic@lists.infradead.org \ --cc=linux-arm-kernel@lists.infradead.org \ --cc=linux-arm-msm@vger.kernel.org \ --cc=linux-kernel@vger.kernel.org \ --cc=linux-mediatek@lists.infradead.org \ --cc=linux-mips@vger.kernel.org \ --cc=linux-samsung-soc@vger.kernel.org \ --cc=linuxppc-dev@lists.ozlabs.org \ --cc=matthias.bgg@gmail.com \ --cc=mripard@kernel.org \ --cc=shawnguo@kernel.org \ --cc=ssantosh@kernel.org \ --cc=wens@csie.org \ --subject='Re: [PATCH 06/10] soc: mediatek: convert to devm_platform_ioremap_resource' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).