[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <1407412549-14983-1-git-send-email-nicoleotsuka@gmail.com>
Date: Thu, 7 Aug 2014 19:55:49 +0800
From: Nicolin Chen <nicoleotsuka@...il.com>
To: <broonie@...nel.org>
CC: <patches@...nsource.wolfsonmicro.com>,
<alsa-devel@...a-project.org>, <rf@...nsource.wolfsonmicro.com>,
<lgirdwood@...il.com>, <linux-kernel@...r.kernel.org>,
<tiwai@...e.de>, <perex@...ex.cz>,
<ckeepax@...nsource.wolfsonmicro.com>, <B18700@...escale.com>,
<b02247@...escale.com>
Subject: [PATCH] ASoC: wm8962: Correct the bit offset to enable mono speaker output
As WM8962 datasheet describes for SPK_MONO bit of R51: When SPK_MONO
is set to '1', both speakers output the signal from the left channel.
So for mono speaker widget, we shall enable Left Channel whose enable
bit is 6 instead of 7 (Right Channel).
This patches just simply corrects the bit offset.
Signed-off-by: Peter Chan <B18700@...escale.com>
Signed-off-by: Nicolin Chen <nicoleotsuka@...il.com>
---
@Peter
I cced you just to let you know that I'm merging your fix to upstream.
And because you patch can't be applied to the upstream tree directly,
I used my own commit with your signed-off. Thank you for the fix.
sound/soc/codecs/wm8962.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sound/soc/codecs/wm8962.c b/sound/soc/codecs/wm8962.c
index 1098ae3..105deec 100644
--- a/sound/soc/codecs/wm8962.c
+++ b/sound/soc/codecs/wm8962.c
@@ -2185,7 +2185,7 @@ SND_SOC_DAPM_MIXER("Speaker Mixer", WM8962_MIXER_ENABLES, 1, 0,
spkmixl, ARRAY_SIZE(spkmixl)),
SND_SOC_DAPM_MUX_E("Speaker PGA", WM8962_PWR_MGMT_2, 4, 0, &spkoutl_mux,
out_pga_event, SND_SOC_DAPM_POST_PMU),
-SND_SOC_DAPM_PGA("Speaker Output", WM8962_CLASS_D_CONTROL_1, 7, 0, NULL, 0),
+SND_SOC_DAPM_PGA("Speaker Output", WM8962_CLASS_D_CONTROL_1, 6, 0, NULL, 0),
SND_SOC_DAPM_OUTPUT("SPKOUT"),
};
--
1.8.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists