summaryrefslogtreecommitdiffstats
path: root/meta/recipes-multimedia/alsa/alsa-utils/0001-nhlt-nhlt-dmic-info.c-include-sys-types.h.patch
blob: 43497e3d76ade24ac9b8d3b96e0c0c4c85bb58f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
From 35a3382f3818d29b60f4c888e338189a4d93d0e5 Mon Sep 17 00:00:00 2001
From: Michael Opdenacker <michael.opdenacker@bootlin.com>
Date: Tue, 19 Sep 2023 11:47:50 +0200
Subject: [PATCH] nhlt/nhlt-dmic-info.c: include sys/types.h

To fix an issue compiling with the musl C library:
nhlt-dmic-info.c: error: unknown type name 'u_int8_t'

https://github.com/alsa-project/alsa-utils/issues/238

Upstream-Status: Submitted [alsa-devel@alsa-project.org]
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
---
 nhlt/nhlt-dmic-info.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/nhlt/nhlt-dmic-info.c b/nhlt/nhlt-dmic-info.c
index 3f6c64d..331555a 100644
--- a/nhlt/nhlt-dmic-info.c
+++ b/nhlt/nhlt-dmic-info.c
@@ -33,6 +33,7 @@
 #include <fcntl.h>
 #include <getopt.h>
 #include <sys/stat.h>
+#include <sys/types.h>
 #include <arpa/inet.h>
 
 int debug = 0;
-- 
2.34.1