From: Rene Sapiens Date: Fri, 9 Jul 2010 22:48:52 +0000 (-0500) Subject: staging: ti dspbridge: fix compilation error X-Git-Tag: v2.6.36-rc1~520^2~1^2~213 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=0d9073abb7735dc7005a76835af055f4b6851586;p=karo-tx-linux.git staging: ti dspbridge: fix compilation error This patch fix a compilation error in uuid_hex_to_bin due to the patch "simplify and clean up" Signed-off-by: Rene Sapiens Acked-by: Andy Shevchenko Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/tidspbridge/gen/uuidutil.c b/drivers/staging/tidspbridge/gen/uuidutil.c index eb09bc32e881..070761bf62bb 100644 --- a/drivers/staging/tidspbridge/gen/uuidutil.c +++ b/drivers/staging/tidspbridge/gen/uuidutil.c @@ -58,6 +58,7 @@ static s32 uuid_hex_to_bin(char *buf, s32 len) { s32 i; s32 result = 0; + int value; for (i = 0; i < len; i++) { value = hex_to_bin(*buf++);