aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpio
diff options
context:
space:
mode:
authorAnson Huang <anson.huang@nxp.com>2019-04-01 05:09:50 +0000
committerBartosz Golaszewski <bgolaszewski@baylibre.com>2019-04-01 10:06:52 +0200
commit43c691e6232cef62daeca3d434e8729a725b2fe2 (patch)
tree0ca0bae0eff4fd5b1bf598d9fe6e27a18b852c0a /drivers/gpio
parentgpio: mlxbf: Add dependency on 64BIT to Kconfig entry (diff)
downloadlinux-dev-43c691e6232cef62daeca3d434e8729a725b2fe2.tar.xz
linux-dev-43c691e6232cef62daeca3d434e8729a725b2fe2.zip
gpio: mxc: use devm_platform_ioremap_resource() to simplify code
Use the new helper devm_platform_ioremap_resource() which wraps the platform_get_resource() and devm_ioremap_resource() together, to simplify the code. Signed-off-by: Anson Huang <Anson.Huang@nxp.com> Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
Diffstat (limited to 'drivers/gpio')
-rw-r--r--drivers/gpio/gpio-mxc.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/gpio/gpio-mxc.c b/drivers/gpio/gpio-mxc.c
index e86e61dda4b7..b2813580c582 100644
--- a/drivers/gpio/gpio-mxc.c
+++ b/drivers/gpio/gpio-mxc.c
@@ -411,7 +411,6 @@ static int mxc_gpio_probe(struct platform_device *pdev)
{
struct device_node *np = pdev->dev.of_node;
struct mxc_gpio_port *port;
- struct resource *iores;
int irq_base;
int err;
@@ -423,8 +422,7 @@ static int mxc_gpio_probe(struct platform_device *pdev)
port->dev = &pdev->dev;
- iores = platform_get_resource(pdev, IORESOURCE_MEM, 0);
- port->base = devm_ioremap_resource(&pdev->dev, iores);
+ port->base = devm_platform_ioremap_resource(pdev, 0);
if (IS_ERR(port->base))
return PTR_ERR(port->base);