mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 19:11:53 +00:00
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>
This commit is contained in:
parent
fdc79a6b12
commit
2c2ca207e4
2 changed files with 10 additions and 6 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue