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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1204,7 +1204,7 @@ static int visorhba_init(void)
	if (rc)
		goto cleanup_debugfs;

	return rc;
	return 0;

cleanup_debugfs:
	debugfs_remove_recursive(visorhba_debugfs_dir);