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 08/42] drivers: gpio: dwap: 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-dwapb.c | 4 +---
    1 file changed, 1 insertion(+), 3 deletions(-)

    diff --git a/drivers/gpio/gpio-dwapb.c b/drivers/gpio/gpio-dwapb.c
    index 84ae044..d3eda65 100644
    --- a/drivers/gpio/gpio-dwapb.c
    +++ b/drivers/gpio/gpio-dwapb.c
    @@ -655,7 +655,6 @@ static void dwapb_gpio_unregister(struct dwapb_gpio *gpio)
    static int dwapb_gpio_probe(struct platform_device *pdev)
    {
    unsigned int i;
    - struct resource *res;
    struct dwapb_gpio *gpio;
    int err;
    struct device *dev = &pdev->dev;
    @@ -688,8 +687,7 @@ static int dwapb_gpio_probe(struct platform_device *pdev)
    if (!gpio->ports)
    return -ENOMEM;

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

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