aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/tidspbridge/gen/uuidutil.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/staging/tidspbridge/gen/uuidutil.c')
-rw-r--r--drivers/staging/tidspbridge/gen/uuidutil.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/tidspbridge/gen/uuidutil.c b/drivers/staging/tidspbridge/gen/uuidutil.c
index 9a112b3ca8e..af0b44ec562 100644
--- a/drivers/staging/tidspbridge/gen/uuidutil.c
+++ b/drivers/staging/tidspbridge/gen/uuidutil.c
@@ -36,8 +36,8 @@
36 * Note: snprintf format specifier is: 36 * Note: snprintf format specifier is:
37 * %[flags] [width] [.precision] [{h | l | I64 | L}]type 37 * %[flags] [width] [.precision] [{h | l | I64 | L}]type
38 */ 38 */
39void uuid_uuid_to_string(IN struct dsp_uuid *uuid_obj, OUT char *sz_uuid, 39void uuid_uuid_to_string(struct dsp_uuid *uuid_obj, OUT char *sz_uuid,
40 IN s32 size) 40 s32 size)
41{ 41{
42 s32 i; /* return result from snprintf. */ 42 s32 i; /* return result from snprintf. */
43 43
@@ -75,7 +75,7 @@ static s32 uuid_hex_to_bin(char *buf, s32 len)
75 * Purpose: 75 * Purpose:
76 * Converts a string to a struct dsp_uuid. 76 * Converts a string to a struct dsp_uuid.
77 */ 77 */
78void uuid_uuid_from_string(IN char *sz_uuid, OUT struct dsp_uuid *uuid_obj) 78void uuid_uuid_from_string(char *sz_uuid, OUT struct dsp_uuid *uuid_obj)
79{ 79{
80 s32 j; 80 s32 j;
81 81