Update to kernel headers v5.2.11.

Test: Build and boots on taimen.
Test: Bionic unit tests all pass on taimen.
Change-Id: I80abb6f9abbff9ca20ce6c7c912a259b5ca86fa2
diff --git a/libc/kernel/uapi/sound/sof/header.h b/libc/kernel/uapi/sound/sof/header.h
index cf90e9b..3fbd4a4 100644
--- a/libc/kernel/uapi/sound/sof/header.h
+++ b/libc/kernel/uapi/sound/sof/header.h
@@ -18,12 +18,13 @@
  ****************************************************************************/
 #ifndef __INCLUDE_UAPI_SOUND_SOF_USER_HEADER_H__
 #define __INCLUDE_UAPI_SOUND_SOF_USER_HEADER_H__
+#include <linux/types.h>
 struct sof_abi_hdr {
-  uint32_t magic;
-  uint32_t type;
-  uint32_t size;
-  uint32_t abi;
-  uint32_t reserved[4];
-  uint32_t data[0];
+  __u32 magic;
+  __u32 type;
+  __u32 size;
+  __u32 abi;
+  __u32 reserved[4];
+  __u32 data[0];
 } __packed;
 #endif