From fd1bbbb79eff1a4381328049b375c80c3fc8bff9 Mon Sep 17 00:00:00 2001 From: Peter Huewe Date: Sun, 3 Feb 2013 22:54:33 +0100 Subject: [PATCH] staging/xgifb: Fix return of uninitialized variable Clang warning: drivers/staging/xgifb/XGI_main_26.c: warning: variable 'ret' is used uninitialized whenever 'if' condition: if (xgifb_info->mode_idx < 0) { evaluates to true. drivers/staging/xgifb/XGI_main_26.c: note: uninitialized use occurs here return ret; This patch initializes the variable in this case. Signed-off-by: Peter Huewe Signed-off-by: Greg Kroah-Hartman --- Reading git-format-patch failed