debian/rules.d/scripts/mod: Add uuid_t and UUID_STRING_LEN definitions

This commit is contained in:
Ben Hutchings
2019-05-19 16:41:54 +01:00
parent d17e39e4ec
commit e89a92ea07
2 changed files with 3 additions and 0 deletions

1
debian/changelog vendored
View File

@@ -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,

View File

@@ -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)