aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pinctrl/pinctrl-artpec6.c
diff options
context:
space:
mode:
authorYueHaibing <yuehaibing@huawei.com>2019-11-04 22:26:54 +0800
committerLinus Walleij <linus.walleij@linaro.org>2019-11-05 15:33:40 +0100
commit4b024225c4a8245e6ecc66ce1df1eaf2ebeb4acb (patch)
tree873046faf0ef5832cefcef8d3715896f092986b6 /drivers/pinctrl/pinctrl-artpec6.c
parentpinctrl: just return if no valid maps (diff)
downloadlinux-dev-4b024225c4a8245e6ecc66ce1df1eaf2ebeb4acb.tar.xz
linux-dev-4b024225c4a8245e6ecc66ce1df1eaf2ebeb4acb.zip
pinctrl: use devm_platform_ioremap_resource() to simplify code
devm_platform_ioremap_resource() internally have platform_get_resource() and devm_ioremap_resource() in it. So instead of calling them separately use devm_platform_ioremap_resource() directly. Signed-off-by: YueHaibing <yuehaibing@huawei.com> Acked-by: Thierry Reding <treding@nvidia.com> Acked-by: Neil Armstrong <narmstrong@baylibre.com> Acked-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org> Acked-by: Jesper Nilsson <jesper.nilsson@axis.com> Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org> Link: https://lore.kernel.org/r/20191104142654.39256-1-yuehaibing@huawei.com Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/pinctrl/pinctrl-artpec6.c')
-rw-r--r--drivers/pinctrl/pinctrl-artpec6.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/pinctrl/pinctrl-artpec6.c b/drivers/pinctrl/pinctrl-artpec6.c
index e3239cf926f9..986e04ac6b5b 100644
--- a/drivers/pinctrl/pinctrl-artpec6.c
+++ b/drivers/pinctrl/pinctrl-artpec6.c
@@ -936,7 +936,6 @@ static void artpec6_pmx_reset(struct artpec6_pmx *pmx)
static int artpec6_pmx_probe(struct platform_device *pdev)
{
struct artpec6_pmx *pmx;
- struct resource *res;
pmx = devm_kzalloc(&pdev->dev, sizeof(*pmx), GFP_KERNEL);
if (!pmx)
@@ -944,8 +943,7 @@ static int artpec6_pmx_probe(struct platform_device *pdev)
pmx->dev = &pdev->dev;
- res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
- pmx->base = devm_ioremap_resource(&pdev->dev, res);
+ pmx->base = devm_platform_ioremap_resource(pdev, 0);
if (IS_ERR(pmx->base))
return PTR_ERR(pmx->base);