From: Frank Lee <tiny.windzz@gmail.com> To: Marc Zyngier <maz@kernel.org> Cc: khilman@baylibre.com, leoyang.li@nxp.com, khalasa@piap.pl, john@phrozen.org, Matthias Brugger <matthias.bgg@gmail.com>, agross@kernel.org, bjorn.andersson@linaro.org, kgene@kernel.org, krzk@kernel.org, Maxime Ripard <mripard@kernel.org>, Chen-Yu Tsai <wens@csie.org>, ssantosh@kernel.org, jun.nie@linaro.org, shawnguo@kernel.org, linux-samsung-soc@vger.kernel.org, linux-arm-msm@vger.kernel.org, Linux Kernel Mailing List <linux-kernel@vger.kernel.org>, linux-mips@vger.kernel.org, linux-mediatek@lists.infradead.org, linux-amlogic@lists.infradead.org, linuxppc-dev@lists.ozlabs.org, Linux ARM <linux-arm-kernel@lists.infradead.org> Subject: Re: [PATCH 10/10] soc: qcom: convert to devm_platform_ioremap_resource Date: Sun, 15 Dec 2019 20:00:01 +0800 [thread overview] Message-ID: <CAEExFWtgXt2pGM1fGfmxNdk_7S_53gnhN0-bProWA4-vOaNN3w@mail.gmail.com> (raw) In-Reply-To: <20191215104824.658889d3@why> On Sun, Dec 15, 2019 at 6:48 PM Marc Zyngier <maz@kernel.org> wrote: > > On Sat, 14 Dec 2019 17:54:47 +0000 > Yangtao Li <tiny.windzz@gmail.com> wrote: > > > Use devm_platform_ioremap_resource() to simplify code. > > > > Signed-off-by: Yangtao Li <tiny.windzz@gmail.com> > > --- > > drivers/soc/qcom/llcc-qcom.c | 7 +------ > > drivers/soc/qcom/qcom-geni-se.c | 4 +--- > > drivers/soc/qcom/qcom_aoss.c | 4 +--- > > drivers/soc/qcom/qcom_gsbi.c | 5 +---- > > drivers/soc/qcom/spm.c | 4 +--- > > 5 files changed, 5 insertions(+), 19 deletions(-) > > > > diff --git a/drivers/soc/qcom/llcc-qcom.c b/drivers/soc/qcom/llcc-qcom.c > > index 429b5a60a1ba..99e19df76889 100644 > > --- a/drivers/soc/qcom/llcc-qcom.c > > +++ b/drivers/soc/qcom/llcc-qcom.c > > @@ -387,7 +387,6 @@ static int qcom_llcc_remove(struct platform_device *pdev) > > static struct regmap *qcom_llcc_init_mmio(struct platform_device *pdev, > > const char *name) > > { > > - struct resource *res; > > void __iomem *base; > > struct regmap_config llcc_regmap_config = { > > .reg_bits = 32, > > @@ -396,11 +395,7 @@ static struct regmap *qcom_llcc_init_mmio(struct platform_device *pdev, > > .fast_io = true, > > }; > > > > - res = platform_get_resource_byname(pdev, IORESOURCE_MEM, name); > > - if (!res) > > - return ERR_PTR(-ENODEV); > > - > > - base = devm_ioremap_resource(&pdev->dev, res); > > + base = devm_platform_ioremap_resource(pdev, 0); > > What guarantees do you have that entry 0 matches name? Yeah, this place is wrong. I intruduce another helper. https://lore.kernel.org/patchwork/patch/1165186/ Thx, Yangtao > > I find these changes pointless: they don't add much to the readability > or maintainability of the code, and instead introduce creative bugs. > > M. > -- > Jazz is not dead. It just smells funny...
next prev parent reply other threads:[~2019-12-15 12:00 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 ` [PATCH 06/10] soc: mediatek: " Yangtao Li 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 [this message] 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=CAEExFWtgXt2pGM1fGfmxNdk_7S_53gnhN0-bProWA4-vOaNN3w@mail.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=maz@kernel.org \ --cc=mripard@kernel.org \ --cc=shawnguo@kernel.org \ --cc=ssantosh@kernel.org \ --cc=wens@csie.org \ --subject='Re: [PATCH 10/10] soc: qcom: 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).