mirror of
https://github.com/armbian/build.git
synced 2025-08-19 13:31:02 +02:00
* Attach Meson64 CURRENT to 5.6.y and make DEV = CURRENT at this point. There is a lot of changes to 5.7.y and can be done after release or by someone that feels a need for this right now. * Delete meson64_fclk_div3.patch this fix has been upstream for some time, I had issues with it on 5.4, which is why it had been removed there. * [ meson64 current ] kconfig tweak disable Rockchip SoC drivers * [ meson64 current ] remove rockchip patches * [ meson64 current ] disable CMA patch GX * [ meson64 current] add libretech cc audio patch This brings the dts even with the khilman 5.8/integ branch which includes all of the audio changes. The kernel is registering audio devices, however nothing comes out. committed in case someone wants to spend time debugging/testing theories. * fix permissions was editing from another machine, accidental change of permissions in the patch * Set default mixer settings Signed-off-by: Igor Pecovnik <igor.pecovnik@gmail.com> * [ meson64 current ] GXL audio commit This moves to the mainline patches and covers le potato and la frite. Adjusted asound config to handle a commonized sound card name. * [ meson64 current ] add gxbb audio WIP Playback is too fast, a clock setting is off somewhere. * Update kernel configs Signed-off-by: Igor Pecovnik <igor.pecovnik@gmail.com> Co-authored-by: Tony <tonymckahan@gmail.com>
31 lines
1.1 KiB
Diff
31 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
|
|
|