mirror of https://gitee.com/openkylin/linux.git
gpio: timberdale Use devm_gpiochip_add_data() for gpio registration
Use devm_gpiochip_add_data() for GPIO registration. Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com>
This commit is contained in:
parent
8b4acf3a9b
commit
43fad8322a
|
@ -279,7 +279,7 @@ static int timbgpio_probe(struct platform_device *pdev)
|
|||
gc->ngpio = pdata->nr_pins;
|
||||
gc->can_sleep = false;
|
||||
|
||||
err = gpiochip_add_data(gc, tgpio);
|
||||
err = devm_gpiochip_add_data(&pdev->dev, gc, tgpio);
|
||||
if (err)
|
||||
return err;
|
||||
|
||||
|
@ -320,8 +320,6 @@ static int timbgpio_remove(struct platform_device *pdev)
|
|||
irq_set_handler_data(irq, NULL);
|
||||
}
|
||||
|
||||
gpiochip_remove(&tgpio->gpio);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue