From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 61A06138350 for ; Sat, 2 May 2020 19:25:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8C7AFE0CA2; Sat, 2 May 2020 19:25:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7297AE0CA2 for ; Sat, 2 May 2020 19:25:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5550334F2CC for ; Sat, 2 May 2020 19:25:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0A32426 for ; Sat, 2 May 2020 19:25:45 +0000 (UTC) From: "Mike Pagano" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Pagano" Message-ID: <1588447530.5686f4b988cb74f62b7d571baf82575518356710.mpagano@gentoo> Subject: [gentoo-commits] proj/linux-patches:5.6 commit in: / X-VCS-Repository: proj/linux-patches X-VCS-Files: 0000_README 1009_linux-5.6.10.patch X-VCS-Directories: / X-VCS-Committer: mpagano X-VCS-Committer-Name: Mike Pagano X-VCS-Revision: 5686f4b988cb74f62b7d571baf82575518356710 X-VCS-Branch: 5.6 Date: Sat, 2 May 2020 19:25:45 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: af1f9bb9-edd4-440f-b5b7-c716d936a604 X-Archives-Hash: cf0c697ead86bc51718fc2a0e26f28e9 commit: 5686f4b988cb74f62b7d571baf82575518356710 Author: Mike Pagano gentoo org> AuthorDate: Sat May 2 19:25:30 2020 +0000 Commit: Mike Pagano gentoo org> CommitDate: Sat May 2 19:25:30 2020 +0000 URL: https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=5686f4b9 Linux patch 5.6.10 Signed-off-by: Mike Pagano gentoo.org> 0000_README | 4 ++++ 1009_linux-5.6.10.patch | 29 +++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+) diff --git a/0000_README b/0000_README index 8794f80..25aa563 100644 --- a/0000_README +++ b/0000_README @@ -79,6 +79,10 @@ Patch: 1008_linux-5.6.9.patch From: http://www.kernel.org Desc: Linux 5.6.9 +Patch: 1009_linux-5.6.10.patch +From: http://www.kernel.org +Desc: Linux 5.6.10 + Patch: 1500_XATTR_USER_PREFIX.patch From: https://bugs.gentoo.org/show_bug.cgi?id=470644 Desc: Support for namespace user.pax.* on tmpfs. diff --git a/1009_linux-5.6.10.patch b/1009_linux-5.6.10.patch new file mode 100644 index 0000000..710dd6b --- /dev/null +++ b/1009_linux-5.6.10.patch @@ -0,0 +1,29 @@ +diff --git a/Makefile b/Makefile +index 2fc8ba07d930..4b29cc9769e8 100644 +--- a/Makefile ++++ b/Makefile +@@ -1,7 +1,7 @@ + # SPDX-License-Identifier: GPL-2.0 + VERSION = 5 + PATCHLEVEL = 6 +-SUBLEVEL = 9 ++SUBLEVEL = 10 + EXTRAVERSION = + NAME = Kleptomaniac Octopus + +diff --git a/sound/soc/meson/axg-card.c b/sound/soc/meson/axg-card.c +index 2b04ac3d8fd3..1f698adde506 100644 +--- a/sound/soc/meson/axg-card.c ++++ b/sound/soc/meson/axg-card.c +@@ -586,10 +586,8 @@ static int axg_card_add_link(struct snd_soc_card *card, struct device_node *np, + + if (axg_card_cpu_is_tdm_iface(dai_link->cpus->of_node)) + ret = axg_card_parse_tdm(card, np, index); +- else if (axg_card_cpu_is_codec(dai_link->cpus->of_node)) { ++ else if (axg_card_cpu_is_codec(dai_link->cpus->of_node)) + dai_link->params = &codec_params; +- dai_link->no_pcm = 0; /* link is not a DPCM BE */ +- } + + return ret; + }