diff options
author | Tomas Winkler <tomas.winkler@intel.com> | 2012-05-09 09:38:58 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-05-09 16:57:30 -0400 |
commit | b544f3fd3ac509850f8f1c28b302ae4e65b88346 (patch) | |
tree | c3a56209398370fba239204fa4a6ece401227085 /include/linux/uuid.h | |
parent | 32c826b66cc6f91831b5473a0ddceb410d4ffaf0 (diff) |
uuid: add uuid.h to exported header list
uuid is used in mei.h interface
Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/linux/uuid.h')
-rw-r--r-- | include/linux/uuid.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/uuid.h b/include/linux/uuid.h index 5b7efbfcee4e..f86c37bfd4a0 100644 --- a/include/linux/uuid.h +++ b/include/linux/uuid.h | |||
@@ -54,6 +54,8 @@ typedef struct { | |||
54 | UUID_BE(0x00000000, 0x0000, 0x0000, 0x00, 0x00, 0x00, 0x00, \ | 54 | UUID_BE(0x00000000, 0x0000, 0x0000, 0x00, 0x00, 0x00, 0x00, \ |
55 | 0x00, 0x00, 0x00, 0x00) | 55 | 0x00, 0x00, 0x00, 0x00) |
56 | 56 | ||
57 | #ifdef __KERNEL__ | ||
58 | |||
57 | static inline int uuid_le_cmp(const uuid_le u1, const uuid_le u2) | 59 | static inline int uuid_le_cmp(const uuid_le u1, const uuid_le u2) |
58 | { | 60 | { |
59 | return memcmp(&u1, &u2, sizeof(uuid_le)); | 61 | return memcmp(&u1, &u2, sizeof(uuid_le)); |
@@ -67,4 +69,6 @@ static inline int uuid_be_cmp(const uuid_be u1, const uuid_be u2) | |||
67 | extern void uuid_le_gen(uuid_le *u); | 69 | extern void uuid_le_gen(uuid_le *u); |
68 | extern void uuid_be_gen(uuid_be *u); | 70 | extern void uuid_be_gen(uuid_be *u); |
69 | 71 | ||
72 | #endif /* __KERNEL__ */ | ||
73 | |||
70 | #endif | 74 | #endif |