mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-06 05:02:31 +00:00
modpost: add guid_t type definition
Since guid_t is the recommended data type for UUIDs in kernel (and I guess uuid_le is meant to be ultimately replaced with it), it should be made available here as well. Signed-off-by: Heikki Krogerus <heikki.krogerus@linux.intel.com> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
This commit is contained in:
parent
858805b336
commit
389c9af7f1
@ -34,6 +34,11 @@ typedef Elf64_Addr kernel_ulong_t;
|
|||||||
typedef uint32_t __u32;
|
typedef uint32_t __u32;
|
||||||
typedef uint16_t __u16;
|
typedef uint16_t __u16;
|
||||||
typedef unsigned char __u8;
|
typedef unsigned char __u8;
|
||||||
|
typedef struct {
|
||||||
|
__u8 b[16];
|
||||||
|
} guid_t;
|
||||||
|
|
||||||
|
/* backwards compatibility, don't use in new code */
|
||||||
typedef struct {
|
typedef struct {
|
||||||
__u8 b[16];
|
__u8 b[16];
|
||||||
} uuid_le;
|
} uuid_le;
|
||||||
|
Loading…
Reference in New Issue
Block a user