diff options
author | Amerigo Wang <amwang@redhat.com> | 2011-01-18 13:09:21 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-02-03 15:39:17 -0800 |
commit | 1f7da214e26a8ee4fbb66af50e27147d5d115c5a (patch) | |
tree | 196b3a7422eb5284d099239d414dba2e475dd2a7 /fs/debugfs | |
parent | 345279bc105e5a331ee81b0e8446b61f2c155784 (diff) | |
download | linux-3.10-1f7da214e26a8ee4fbb66af50e27147d5d115c5a.tar.gz linux-3.10-1f7da214e26a8ee4fbb66af50e27147d5d115c5a.tar.bz2 linux-3.10-1f7da214e26a8ee4fbb66af50e27147d5d115c5a.zip |
debugfs: remove module_exit()
debugfs can't be a module, so module_exit() is meaningless for it.
Signed-off-by: WANG Cong <amwang@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'fs/debugfs')
-rw-r--r-- | fs/debugfs/inode.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/fs/debugfs/inode.c b/fs/debugfs/inode.c index 37a8ca7c122..d38c88fb63a 100644 --- a/fs/debugfs/inode.c +++ b/fs/debugfs/inode.c @@ -13,9 +13,6 @@ * */ -/* uncomment to get debug messages from the debug filesystem, ah the irony. */ -/* #define DEBUG */ - #include <linux/module.h> #include <linux/fs.h> #include <linux/mount.h> @@ -540,17 +537,5 @@ static int __init debugfs_init(void) return retval; } - -static void __exit debugfs_exit(void) -{ - debugfs_registered = false; - - simple_release_fs(&debugfs_mount, &debugfs_mount_count); - unregister_filesystem(&debug_fs_type); - kobject_put(debug_kobj); -} - core_initcall(debugfs_init); -module_exit(debugfs_exit); -MODULE_LICENSE("GPL"); |