From: David Binder Date: Thu, 12 May 2016 13:14:47 +0000 (-0400) Subject: staging: unisys: visorhba: return 0 literal X-Git-Tag: v4.8-rc1~193^2~244 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=ab2c3d75451819b4d28ec6dececd299ac03d39ec;p=karo-tx-linux.git staging: unisys: visorhba: return 0 literal Returns 0 instead of variable rc in visorhba_init(). Signed-off-by: David Binder Signed-off-by: David Kershner Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/unisys/visorhba/visorhba_main.c b/drivers/staging/unisys/visorhba/visorhba_main.c index 11985bbafd1c..5ef1d30d77e5 100644 --- a/drivers/staging/unisys/visorhba/visorhba_main.c +++ b/drivers/staging/unisys/visorhba/visorhba_main.c @@ -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);