aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRene Sapiens <rene.sapiens@ti.com>2010-07-09 18:48:52 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2010-07-22 13:40:48 -0400
commit0d9073abb7735dc7005a76835af055f4b6851586 (patch)
tree8f0d66a6b07aaac0cfa2c77b8c5c6219a3ed37c4
parenta6bff488e7267b65d7c6b2e0d5d2dd2257e65ea4 (diff)
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 <rene.sapiens@ti.com> Acked-by: Andy Shevchenko <andy.shevchenko@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r--drivers/staging/tidspbridge/gen/uuidutil.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/staging/tidspbridge/gen/uuidutil.c b/drivers/staging/tidspbridge/gen/uuidutil.c
index eb09bc32e88..070761bf62b 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)
58{ 58{
59 s32 i; 59 s32 i;
60 s32 result = 0; 60 s32 result = 0;
61 int value;
61 62
62 for (i = 0; i < len; i++) { 63 for (i = 0; i < len; i++) {
63 value = hex_to_bin(*buf++); 64 value = hex_to_bin(*buf++);