mirror of
https://github.com/Fishwaldo/build.git
synced 2025-07-23 13:29:33 +00:00
* Move Meson64 to 5.6.y * Move Meson64 U-boot to 2020.04 Tested on Odroid C2 * Merge, replace and update patches from Khadas branch
30 lines
1.1 KiB
Diff
30 lines
1.1 KiB
Diff
From 529833095960c9eebefd028b70bff7e6d282b69a Mon Sep 17 00:00:00 2001
|
|
From: Jerome Brunet <jbrunet@baylibre.com>
|
|
Date: Mon, 17 Feb 2020 02:53:13 +0000
|
|
Subject: [PATCH 024/101] FROMGIT: ASoC: meson: aiu: fix acodec dai input name
|
|
init
|
|
|
|
Remove the double initialization of the dai input name as reported by
|
|
sparse.
|
|
|
|
Fixes: 65816025d461 ("ASoC: meson: aiu: add internal dac codec control support")
|
|
Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
|
|
---
|
|
sound/soc/meson/aiu-acodec-ctrl.c | 1 -
|
|
1 file changed, 1 deletion(-)
|
|
|
|
diff --git a/sound/soc/meson/aiu-acodec-ctrl.c b/sound/soc/meson/aiu-acodec-ctrl.c
|
|
index 12d8a4d351a1..b8e88b1a4fc8 100644
|
|
--- a/sound/soc/meson/aiu-acodec-ctrl.c
|
|
+++ b/sound/soc/meson/aiu-acodec-ctrl.c
|
|
@@ -128,7 +128,6 @@ static const struct snd_soc_dai_ops aiu_acodec_ctrl_output_ops = {
|
|
|
|
#define AIU_ACODEC_INPUT(xname) { \
|
|
.name = "ACODEC CTRL " xname, \
|
|
- .name = xname, \
|
|
.playback = AIU_ACODEC_STREAM(xname, "Playback", 8), \
|
|
.ops = &aiu_acodec_ctrl_input_ops, \
|
|
.probe = meson_codec_glue_input_dai_probe, \
|
|
--
|
|
2.17.1
|
|
|