mirror of https://gitee.com/openkylin/linux.git
gpio/xilinx: Use of_mm_gpiochip_remove
Use the newly created of_mm_gpiochip_remove function for cleaning up of_mm_gpiochip_add Suggested-by: Alexandre Courbot <gnurou@gmail.com> Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
d621e8bae5
commit
c458e45045
|
@ -236,10 +236,7 @@ static int xgpio_remove(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct xgpio_instance *chip = platform_get_drvdata(pdev);
|
struct xgpio_instance *chip = platform_get_drvdata(pdev);
|
||||||
|
|
||||||
gpiochip_remove(&chip->mmchip.gc);
|
of_mm_gpiochip_remove(&chip->mmchip);
|
||||||
|
|
||||||
iounmap(chip->mmchip.regs);
|
|
||||||
kfree(chip->mmchip.gc.label);
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue