aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/mod/file2alias.c
diff options
context:
space:
mode:
authorHeikki Krogerus <heikki.krogerus@linux.intel.com>2019-08-27 14:14:37 +0300
committerMasahiro Yamada <yamada.masahiro@socionext.com>2019-09-04 22:55:42 +0900
commit389c9af7f1a1e564c18ab744528b7f64759b7875 (patch)
treefb186ab5bc1452ca2e840629225248fa4ba09caf /scripts/mod/file2alias.c
parentkbuild: add $(BASH) to run scripts with bash-extension (diff)
downloadlinux-dev-389c9af7f1a1e564c18ab744528b7f64759b7875.tar.xz
linux-dev-389c9af7f1a1e564c18ab744528b7f64759b7875.zip
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>
Diffstat (limited to 'scripts/mod/file2alias.c')
-rw-r--r--scripts/mod/file2alias.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/mod/file2alias.c b/scripts/mod/file2alias.c
index e17a29ae2e97..c91eba751804 100644
--- a/scripts/mod/file2alias.c
+++ b/scripts/mod/file2alias.c
@@ -36,6 +36,11 @@ typedef uint16_t __u16;
typedef unsigned char __u8;
typedef struct {
__u8 b[16];
+} guid_t;
+
+/* backwards compatibility, don't use in new code */
+typedef struct {
+ __u8 b[16];
} uuid_le;
typedef struct {
__u8 b[16];