From: John Crispin Date: Tue, 14 Aug 2012 12:32:11 +0000 (+0000) Subject: [kernel] fixes gpio_dev un/reload balancing X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=f3869d2f83cbb5564f271ab024166fe9703b7287;p=openwrt%2Fsvn-archive%2Farchive.git [kernel] fixes gpio_dev un/reload balancing Signed-off-by: SHI Bin SVN-Revision: 33183 --- diff --git a/target/linux/generic/files/drivers/char/gpio_dev.c b/target/linux/generic/files/drivers/char/gpio_dev.c index 0f428bd38b..c741573026 100644 --- a/target/linux/generic/files/drivers/char/gpio_dev.c +++ b/target/linux/generic/files/drivers/char/gpio_dev.c @@ -141,6 +141,8 @@ out: static int gpio_remove(struct platform_device *dev) { + device_destroy(gpiodev_class, MKDEV(dev_major, 0)); + class_destroy(gpiodev_class); unregister_chrdev(dev_major, DEVNAME); return 0; }