summaryrefslogtreecommitdiffstats
path: root/meta/recipes-multimedia/alsa/alsa-utils/0001-nhlt-nhlt-dmic-info.c-include-sys-types.h.patch
diff options
context:
space:
mode:
authorMichael Opdenacker <michael.opdenacker@bootlin.com>2023-09-19 13:53:20 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-09-20 08:57:27 +0100
commit551a1c088796c0e179fdc4053009f097ad4dd8b3 (patch)
treede33f5514ff42d8f0f52da5eb602789825884280 /meta/recipes-multimedia/alsa/alsa-utils/0001-nhlt-nhlt-dmic-info.c-include-sys-types.h.patch
parentebcf25b14f934fbd323a381604d0727a544fd4db (diff)
downloadpoky-551a1c088796c0e179fdc4053009f097ad4dd8b3.tar.gz
alsa-utils: upgrade 1.2.9 -> 1.2.10
Changelog: - po: add Korean translations - alsactl: fix compilation when building in a subdir - reshuffle included files to include config.h as first - github: update build.yml - aseqdump: fix MIDI 2.0 code - it compiles now - gitcompile: set more verbose compilation warnings - nhlt-dmic-info: fix the verbose compilation warnings for latest gcc - alsaucm: fix the verbose compilation warnings for latest gcc - aplaymidi: fix the verbose compilation warnings for latest gcc - aseqnet: fix the verbose compilation warnings for latest gcc - aseqdump: fix the verbose compilation warnings for latest gcc - aconnect: fix the verbose compilation warnings for latest gcc - speaker-test: fix the verbose compilation warnings for latest gcc - amidi: fix the verbose compilation warnings for latest gcc - bat: fix the verbose compilation warnings for latest gcc - iecset: fix the verbose compilation warnings for latest gcc - alsamixer: fix the verbose compilation warnings for latest gcc - alsaloop: fix the verbose compilation warnings for latest gcc - axfer: fix the verbose compilation warnings for latest gcc - alsactl: fix the verbose compilation warnings for latest gcc - amixer: fix the verbose compilation warnings for latest gcc - aplay: fix the verbose compilation warnings for latest gcc - topology: fix the verbose compilation warnings for latest gcc - alsactl: fix the copy-n-paste typo (SND_RAWMIDI_STREAM_*) - aseqdump: Add options to switch view mode - aseqdump: Correct wrong channel number - aseqdump: Align outputs of UMP MIDI 1.0 with legacy MIDI 1.0 - speaker-test: allow large buffer and period time setup - up to 100 seconds - topology: plugins: nhlt: remove dmic error print - Topology: NHLT: Intel: Update DMIC FIR coefficients - topology: nhlt: intel: support more device types and directions - topology: pre-processor: Add support for CombineArrays - alsactl: add define to compile with glibc 2.38 - topology: plugins: nhlt: set dmic stereo mode only in hw version 1 - aplaymidi: Add UMP support - aconnect: Add UMP support - aseqdump: Add UMP support - nhlt: add nhlt-dmic-info utility (From OE-Core rev: 24b7cd2e58c0a2f48cefb09a3363fd982d50f575) Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/alsa/alsa-utils/0001-nhlt-nhlt-dmic-info.c-include-sys-types.h.patch')
-rw-r--r--meta/recipes-multimedia/alsa/alsa-utils/0001-nhlt-nhlt-dmic-info.c-include-sys-types.h.patch31
1 files changed, 31 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/alsa/alsa-utils/0001-nhlt-nhlt-dmic-info.c-include-sys-types.h.patch b/meta/recipes-multimedia/alsa/alsa-utils/0001-nhlt-nhlt-dmic-info.c-include-sys-types.h.patch
new file mode 100644
index 0000000000..43497e3d76
--- /dev/null
+++ b/meta/recipes-multimedia/alsa/alsa-utils/0001-nhlt-nhlt-dmic-info.c-include-sys-types.h.patch
@@ -0,0 +1,31 @@
1From 35a3382f3818d29b60f4c888e338189a4d93d0e5 Mon Sep 17 00:00:00 2001
2From: Michael Opdenacker <michael.opdenacker@bootlin.com>
3Date: Tue, 19 Sep 2023 11:47:50 +0200
4Subject: [PATCH] nhlt/nhlt-dmic-info.c: include sys/types.h
5
6To fix an issue compiling with the musl C library:
7nhlt-dmic-info.c: error: unknown type name 'u_int8_t'
8
9https://github.com/alsa-project/alsa-utils/issues/238
10
11Upstream-Status: Submitted [alsa-devel@alsa-project.org]
12Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
13---
14 nhlt/nhlt-dmic-info.c | 1 +
15 1 file changed, 1 insertion(+)
16
17diff --git a/nhlt/nhlt-dmic-info.c b/nhlt/nhlt-dmic-info.c
18index 3f6c64d..331555a 100644
19--- a/nhlt/nhlt-dmic-info.c
20+++ b/nhlt/nhlt-dmic-info.c
21@@ -33,6 +33,7 @@
22 #include <fcntl.h>
23 #include <getopt.h>
24 #include <sys/stat.h>
25+#include <sys/types.h>
26 #include <arpa/inet.h>
27
28 int debug = 0;
29--
302.34.1
31