gpio: remember to finally free gpio_device
When the device core reference count for the device goes to 0 and it calls .release() we free resources and so can also finally free up the GPIO state container, struct gpio_device. Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
c366c76a2c
commit
9efd9e6956
1 changed files with 1 additions and 0 deletions
|
@ -405,6 +405,7 @@ static void gpiodevice_release(struct device *dev)
|
||||||
cdev_del(&gdev->chrdev);
|
cdev_del(&gdev->chrdev);
|
||||||
list_del(&gdev->list);
|
list_del(&gdev->list);
|
||||||
ida_simple_remove(&gpio_ida, gdev->id);
|
ida_simple_remove(&gpio_ida, gdev->id);
|
||||||
|
kfree(gdev);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue