diff mbox

ASoC: sun4i-codec: Use proper output for external amp routes

Message ID 1450821617-12906-1-git-send-email-hdegoede@redhat.com (mailing list archive)
State Accepted
Commit 6b803c611c66debd6fc454c9ed049822994a5885
Headers show

Commit Message

Hans de Goede Dec. 22, 2015, 10 p.m. UTC
An external amp (if any) is connected to the external outputs of the SoC
of course, rather then directly to the internal amp.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
---
 sound/soc/sunxi/sun4i-codec.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Comments

Maxime Ripard Dec. 27, 2015, 6:23 p.m. UTC | #1
Hi,

On Tue, Dec 22, 2015 at 11:00:17PM +0100, Hans de Goede wrote:
> An external amp (if any) is connected to the external outputs of the SoC
> of course, rather then directly to the internal amp.
> 
> Signed-off-by: Hans de Goede <hdegoede@redhat.com>

Acked-by: Maxime Ripard <maxime.ripard@free-electrons.com>

Thanks!
Maxime
diff mbox

Patch

diff --git a/sound/soc/sunxi/sun4i-codec.c b/sound/soc/sunxi/sun4i-codec.c
index e6cc6a1..44f170c 100644
--- a/sound/soc/sunxi/sun4i-codec.c
+++ b/sound/soc/sunxi/sun4i-codec.c
@@ -728,7 +728,8 @@  static const struct snd_soc_dapm_widget sun4i_codec_card_dapm_widgets[] = {
 };
 
 static const struct snd_soc_dapm_route sun4i_codec_card_dapm_routes[] = {
-	{ "Speaker", NULL, "Power Amplifier" },
+	{ "Speaker", NULL, "HP Right" },
+	{ "Speaker", NULL, "HP Left" },
 };
 
 static struct snd_soc_card *sun4i_codec_create_card(struct device *dev)