mirror of
https://github.com/torvalds/linux.git
synced 2026-06-06 21:45:45 +02:00
gpio: mockup: remove gpio debugfs when remove device
[ Upstream commit 303e6da994 ]
GPIO mockup debugfs is created in gpio_mockup_probe() but
forgot to remove when remove device. This patch add a devm
managed callback for removing them.
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
1b8b5384e8
commit
3815e66c21
|
|
@ -375,6 +375,13 @@ static void gpio_mockup_debugfs_setup(struct device *dev,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void gpio_mockup_debugfs_cleanup(void *data)
|
||||||
|
{
|
||||||
|
struct gpio_mockup_chip *chip = data;
|
||||||
|
|
||||||
|
debugfs_remove_recursive(chip->dbg_dir);
|
||||||
|
}
|
||||||
|
|
||||||
static void gpio_mockup_dispose_mappings(void *data)
|
static void gpio_mockup_dispose_mappings(void *data)
|
||||||
{
|
{
|
||||||
struct gpio_mockup_chip *chip = data;
|
struct gpio_mockup_chip *chip = data;
|
||||||
|
|
@ -457,7 +464,7 @@ static int gpio_mockup_probe(struct platform_device *pdev)
|
||||||
|
|
||||||
gpio_mockup_debugfs_setup(dev, chip);
|
gpio_mockup_debugfs_setup(dev, chip);
|
||||||
|
|
||||||
return 0;
|
return devm_add_action_or_reset(dev, gpio_mockup_debugfs_cleanup, chip);
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct platform_driver gpio_mockup_driver = {
|
static struct platform_driver gpio_mockup_driver = {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user