lkml.org 
[lkml]   [2019]   [Mar]   [11]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 36/42] drivers: gpio: uniphier: use devm_platform_ioremap_resource()
    Date
    Use the new helper that wraps the calls to platform_get_resource()
    and devm_ioremap_resource() together.

    Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
    ---
    drivers/gpio/gpio-uniphier.c | 4 +---
    1 file changed, 1 insertion(+), 3 deletions(-)

    diff --git a/drivers/gpio/gpio-uniphier.c b/drivers/gpio/gpio-uniphier.c
    index 0f662b2..93cdcc4 100644
    --- a/drivers/gpio/gpio-uniphier.c
    +++ b/drivers/gpio/gpio-uniphier.c
    @@ -346,7 +346,6 @@ static int uniphier_gpio_probe(struct platform_device *pdev)
    struct uniphier_gpio_priv *priv;
    struct gpio_chip *chip;
    struct irq_chip *irq_chip;
    - struct resource *regs;
    unsigned int nregs;
    u32 ngpios;
    int ret;
    @@ -370,8 +369,7 @@ static int uniphier_gpio_probe(struct platform_device *pdev)
    if (!priv)
    return -ENOMEM;

    - regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
    - priv->regs = devm_ioremap_resource(dev, regs);
    + priv->regs = devm_platform_ioremap_resource(pdev, 0);
    if (IS_ERR(priv->regs))
    return PTR_ERR(priv->regs);

    --
    1.9.1
    \
     
     \ /
      Last update: 2019-03-11 19:57    [W:2.186 / U:0.524 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site