diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2014-03-25 20:43:34 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-03-25 20:43:34 -0400 |
commit | fce7fc79c8f7188dfc5eafa1b937bcc3c5a4c2f5 (patch) | |
tree | 1c5e437460385f833f8fd2608e7526f610282d9e /fs/anon_inodes.c | |
parent | d6f2589ad561aa5fa39f347eca6942668b7560a1 (diff) |
fs: remove now stale label in anon_inode_init()
The previous commit removed the register_filesystem() call and the
associated error handling, but left the label for the error path that no
longer exists. Remove that too.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/anon_inodes.c')
-rw-r--r-- | fs/anon_inodes.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/anon_inodes.c b/fs/anon_inodes.c index 4b4543b8b894..42fcc46e2cca 100644 --- a/fs/anon_inodes.c +++ b/fs/anon_inodes.c | |||
@@ -186,7 +186,6 @@ static int __init anon_inode_init(void) | |||
186 | 186 | ||
187 | err_unregister_filesystem: | 187 | err_unregister_filesystem: |
188 | unregister_filesystem(&anon_inode_fs_type); | 188 | unregister_filesystem(&anon_inode_fs_type); |
189 | err_exit: | ||
190 | panic(KERN_ERR "anon_inode_init() failed (%d)\n", error); | 189 | panic(KERN_ERR "anon_inode_init() failed (%d)\n", error); |
191 | } | 190 | } |
192 | 191 | ||