Commit ab2c3d75 authored by David Binder's avatar David Binder Committed by Greg Kroah-Hartman

staging: unisys: visorhba: return 0 literal

Returns 0 instead of variable rc in visorhba_init().
Signed-off-by: default avatarDavid Binder <david.binder@unisys.com>
Signed-off-by: default avatarDavid Kershner <david.kershner@unisys.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d12324e3
...@@ -1204,7 +1204,7 @@ static int visorhba_init(void) ...@@ -1204,7 +1204,7 @@ static int visorhba_init(void)
if (rc) if (rc)
goto cleanup_debugfs; goto cleanup_debugfs;
return rc; return 0;
cleanup_debugfs: cleanup_debugfs:
debugfs_remove_recursive(visorhba_debugfs_dir); debugfs_remove_recursive(visorhba_debugfs_dir);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment