[kernel] fixes gpio_dev un/reload balancing
authorJohn Crispin <blogic@openwrt.org>
Tue, 14 Aug 2012 12:32:11 +0000 (12:32 +0000)
committerJohn Crispin <blogic@openwrt.org>
Tue, 14 Aug 2012 12:32:11 +0000 (12:32 +0000)
Signed-off-by: SHI Bin <shibin@ctsing.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33183 3c298f89-4303-0410-b956-a3cf2f4a3e73

target/linux/generic/files/drivers/char/gpio_dev.c

index 0f428bd..c741573 100644 (file)
@@ -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;
 }