summaryrefslogtreecommitdiff
path: root/include/uuid.h
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2020-04-08 08:32:58 -0600
committerTom Rini <trini@konsulko.com>2020-04-24 16:40:09 -0400
commit2c2ca207e4ed7def3f3f33ab930e673a45bb3743 (patch)
tree17bef17a5d02f95ac5dfc45e02141419d14287ac /include/uuid.h
parentfdc79a6b125d52b6ca0fd65df538db7810d88a8d (diff)
uuid: Use const char * where possible
Update the arguments of these functions so they can be called from code which uses constant strings. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/uuid.h')
-rw-r--r--include/uuid.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/include/uuid.h b/include/uuid.h
index abcc325eae..73c5a89ec7 100644
--- a/include/uuid.h
+++ b/include/uuid.h
@@ -35,11 +35,13 @@ struct uuid {
#define UUID_VARIANT 0x1
int uuid_str_valid(const char *uuid);
-int uuid_str_to_bin(char *uuid_str, unsigned char *uuid_bin, int str_format);
-void uuid_bin_to_str(unsigned char *uuid_bin, char *uuid_str, int str_format);
+int uuid_str_to_bin(const char *uuid_str, unsigned char *uuid_bin,
+ int str_format);
+void uuid_bin_to_str(const unsigned char *uuid_bin, char *uuid_str,
+ int str_format);
#ifdef CONFIG_PARTITION_TYPE_GUID
int uuid_guid_get_bin(const char *guid_str, unsigned char *guid_bin);
-int uuid_guid_get_str(unsigned char *guid_bin, char *guid_str);
+int uuid_guid_get_str(const unsigned char *guid_bin, char *guid_str);
#endif
void gen_rand_uuid(unsigned char *uuid_bin);
void gen_rand_uuid_str(char *uuid_str, int str_format);