summaryrefslogtreecommitdiffstats
path: root/include/common.h
diff options
context:
space:
mode:
authorPrzemyslaw Marczak <p.marczak@samsung.com>2014-04-02 10:20:02 +0200
committerTom Rini <trini@ti.com>2014-04-02 15:44:40 -0400
commita96a0e6153e3d9071c1a4516bf3e94c4cd96c77c (patch)
tree31b51b7f6fc24fda1236a482527922ef0e975019 /include/common.h
parent3f62971162370213271dc1e7a396b6b3a6d5b6c6 (diff)
downloadtalos-obmc-uboot-a96a0e6153e3d9071c1a4516bf3e94c4cd96c77c.tar.gz
talos-obmc-uboot-a96a0e6153e3d9071c1a4516bf3e94c4cd96c77c.zip
part_efi: move uuid<->string conversion functions into lib/uuid.c
This commit introduces cleanup for uuid library. Changes: - move uuid<->string conversion functions into lib/uuid.c so they can be used by code outside part_efi.c. - rename uuid_string() to uuid_bin_to_str() for consistency with existing uuid_str_to_bin() - add an error return code to uuid_str_to_bin() - update existing code to the new library functions. Signed-off-by: Przemyslaw Marczak <p.marczak@samsung.com> Cc: Stephen Warren <swarren@nvidia.com> Cc: Lukasz Majewski <l.majewski@samsung.com> Cc: trini@ti.com
Diffstat (limited to 'include/common.h')
-rw-r--r--include/common.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/common.h b/include/common.h
index 072a1e1615..c48c696f67 100644
--- a/include/common.h
+++ b/include/common.h
@@ -822,7 +822,8 @@ void udelay (unsigned long);
void mdelay(unsigned long);
/* lib/uuid.c */
-void uuid_str_to_bin(const char *uuid, unsigned char *out);
+void uuid_bin_to_str(unsigned char *uuid, char *str);
+int uuid_str_to_bin(char *uuid, unsigned char *out);
int uuid_str_valid(const char *uuid);
/* lib/vsprintf.c */
OpenPOWER on IntegriCloud