38 lines
1.2 KiB
Diff
38 lines
1.2 KiB
Diff
From 78f3c72b38c92760eef2fa8342894ced93fa6bfd Mon Sep 17 00:00:00 2001
|
|
From: ckkim <changkon12@gmail.com>
|
|
Date: Thu, 20 Feb 2020 18:52:57 +0900
|
|
Subject: [PATCH 012/109] 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
|
|
|