staging: ti dspbridge: fix compilation error
authorRene Sapiens <rene.sapiens@ti.com>
Fri, 9 Jul 2010 22:48:52 +0000 (17:48 -0500)
committerGreg Kroah-Hartman <gregkh@suse.de>
Thu, 22 Jul 2010 17:40:48 +0000 (10:40 -0700)
This patch fix a compilation error in uuid_hex_to_bin
due to the patch "simplify and clean up"

Signed-off-by: Rene Sapiens <rene.sapiens@ti.com>
Acked-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/tidspbridge/gen/uuidutil.c

index eb09bc3..070761b 100644 (file)
@@ -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++);