Gentoo Archives: gentoo-commits

From: Mike Pagano <mpagano@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/linux-patches:5.4 commit in: /
Date: Sat, 02 May 2020 19:24:51
Message-Id: 1588447473.5ab7e7f6ccca46d47ce7246f8086bc385244315a.mpagano@gentoo
1 commit: 5ab7e7f6ccca46d47ce7246f8086bc385244315a
2 Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 2 19:24:33 2020 +0000
4 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
5 CommitDate: Sat May 2 19:24:33 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=5ab7e7f6
7
8 Linux patch 5.4.38
9
10 Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
11
12 0000_README | 4 ++++
13 1037_linux-5.4.38.patch | 29 +++++++++++++++++++++++++++++
14 2 files changed, 33 insertions(+)
15
16 diff --git a/0000_README b/0000_README
17 index 0cb47e8..8f9e369 100644
18 --- a/0000_README
19 +++ b/0000_README
20 @@ -191,6 +191,10 @@ Patch: 1036_linux-5.4.37.patch
21 From: http://www.kernel.org
22 Desc: Linux 5.4.37
23
24 +Patch: 1037_linux-5.4.38.patch
25 +From: http://www.kernel.org
26 +Desc: Linux 5.4.38
27 +
28 Patch: 1500_XATTR_USER_PREFIX.patch
29 From: https://bugs.gentoo.org/show_bug.cgi?id=470644
30 Desc: Support for namespace user.pax.* on tmpfs.
31
32 diff --git a/1037_linux-5.4.38.patch b/1037_linux-5.4.38.patch
33 new file mode 100644
34 index 0000000..2bd282e
35 --- /dev/null
36 +++ b/1037_linux-5.4.38.patch
37 @@ -0,0 +1,29 @@
38 +diff --git a/Makefile b/Makefile
39 +index 33690285d6aa..989e7d649633 100644
40 +--- a/Makefile
41 ++++ b/Makefile
42 +@@ -1,7 +1,7 @@
43 + # SPDX-License-Identifier: GPL-2.0
44 + VERSION = 5
45 + PATCHLEVEL = 4
46 +-SUBLEVEL = 37
47 ++SUBLEVEL = 38
48 + EXTRAVERSION =
49 + NAME = Kleptomaniac Octopus
50 +
51 +diff --git a/sound/soc/meson/axg-card.c b/sound/soc/meson/axg-card.c
52 +index 2b04ac3d8fd3..1f698adde506 100644
53 +--- a/sound/soc/meson/axg-card.c
54 ++++ b/sound/soc/meson/axg-card.c
55 +@@ -586,10 +586,8 @@ static int axg_card_add_link(struct snd_soc_card *card, struct device_node *np,
56 +
57 + if (axg_card_cpu_is_tdm_iface(dai_link->cpus->of_node))
58 + ret = axg_card_parse_tdm(card, np, index);
59 +- else if (axg_card_cpu_is_codec(dai_link->cpus->of_node)) {
60 ++ else if (axg_card_cpu_is_codec(dai_link->cpus->of_node))
61 + dai_link->params = &codec_params;
62 +- dai_link->no_pcm = 0; /* link is not a DPCM BE */
63 +- }
64 +
65 + return ret;
66 + }