From e89a92ea07e19d04609fc54a458e1cbc344f2c18 Mon Sep 17 00:00:00 2001 From: Ben Hutchings Date: Sun, 19 May 2019 16:41:54 +0100 Subject: [PATCH] debian/rules.d/scripts/mod: Add uuid_t and UUID_STRING_LEN definitions --- debian/changelog | 1 + debian/rules.d/scripts/mod/types.h | 2 ++ 2 files changed, 3 insertions(+) diff --git a/debian/changelog b/debian/changelog index 078abe6d9742..3b015537a48f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -13,6 +13,7 @@ linux (5.1.3-1~exp1) UNRELEASED; urgency=medium * Drop redundant part of "Install perf scripts non-executable" * Drop "kbuild: Use -nostdinc in compile tests", which is no longer needed * debian/rules.d/scripts/kconfig: Update for upstream file renaming + * debian/rules.d/scripts/mod: Add uuid_t and UUID_STRING_LEN definitions [ Vagrant Cascadian ] * [arm64] Enable modules to support audio on pinebook: SND_SUN4I_I2S, diff --git a/debian/rules.d/scripts/mod/types.h b/debian/rules.d/scripts/mod/types.h index aba3827f44ce..81802bee9297 100644 --- a/debian/rules.d/scripts/mod/types.h +++ b/debian/rules.d/scripts/mod/types.h @@ -6,4 +6,6 @@ typedef unsigned long long __u64; typedef struct { __u8 b[16]; } uuid_le; +typedef unsigned char uuid_t[16]; +#define UUID_STRING_LEN 36 #define offsetof(a,b) __builtin_offsetof(a,b)