mirror of
https://github.com/Fishwaldo/build.git
synced 2025-07-24 05:48:41 +00:00
* Add initial support for Odroid N2+ * Update C4 config and test booting * Updates to C4, N2, N2+ - merge C4 and N2 legacy under meson64, same u-boot - upgrade legacy kernel to meed DTB from mainline - merge N2 and N2+, add a hack to display + in motd when N2+ is detected - shortly spin N2 fan at startup - merged N2 mainline and legacy boot script - add upstream patches * One of the regulators were breaking booting of Odroid N2 Co-authored-by: Werner <EvilOlaf@users.noreply.github.com>
37 lines
1.2 KiB
Diff
37 lines
1.2 KiB
Diff
From 803c6b7ac65e833864f34c0e7ece501f8f6a6706 Mon Sep 17 00:00:00 2001
|
|
From: ckkim <changkon12@gmail.com>
|
|
Date: Thu, 20 Feb 2020 18:52:57 +0900
|
|
Subject: [PATCH 24/74] ODROID-N2: sound/soc: remove mono channel as it
|
|
currently doesn't work hdmi output.
|
|
|
|
Change-Id: I4d43b802815779687ade974f049f2b0517a411d1
|
|
Signed-off-by: ckkim <changkon12@gmail.com>
|
|
---
|
|
sound/soc/meson/axg-frddr.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/sound/soc/meson/axg-frddr.c b/sound/soc/meson/axg-frddr.c
|
|
index c3ae8ac30745..cfb9b12c2b56 100644
|
|
--- a/sound/soc/meson/axg-frddr.c
|
|
+++ b/sound/soc/meson/axg-frddr.c
|
|
@@ -92,7 +92,7 @@ static struct snd_soc_dai_driver axg_frddr_dai_drv = {
|
|
.name = "FRDDR",
|
|
.playback = {
|
|
.stream_name = "Playback",
|
|
- .channels_min = 1,
|
|
+ .channels_min = 2,
|
|
.channels_max = AXG_FIFO_CH_MAX,
|
|
.rates = AXG_FIFO_RATES,
|
|
.formats = AXG_FIFO_FORMATS,
|
|
@@ -165,7 +165,7 @@ static struct snd_soc_dai_driver g12a_frddr_dai_drv = {
|
|
.name = "FRDDR",
|
|
.playback = {
|
|
.stream_name = "Playback",
|
|
- .channels_min = 1,
|
|
+ .channels_min = 2,
|
|
.channels_max = AXG_FIFO_CH_MAX,
|
|
.rates = AXG_FIFO_RATES,
|
|
.formats = AXG_FIFO_FORMATS,
|
|
--
|
|
2.25.1
|
|
|