ASoC: CX20442: simplify codec controller usage
authorJanusz Krzysztofik <jkrzyszt@tis.icnet.pl>
Thu, 6 Aug 2009 10:25:00 +0000 (12:25 +0200)
committerMark Brown <broonie@opensource.wolfsonmicro.com>
Thu, 6 Aug 2009 10:36:46 +0000 (11:36 +0100)
This patch is a workaround for the problem of several subsequent control
statements not being applied correctly to the codec controller (modem).

In order to follow the hook switch state change from handset to handsfree
while
in full duplex mode, two consecutive +VLS control commands were sent to the
modem. The first one was M1 (microphone only), the seconds one was M1S1 (both
microphone and speaker). As there was no real modem handshaking procedure
implemented, neither in the codec nor in the machine driver part of the line
discipline, the modem was having the second command missed.

Since a possibility to switch to microphone only mode (and speaker only mode
as well) seams of no value, I have modified the code to issue single M1S1
command only for any of those cases.

Tested on my Amstrad Delta.

Signed-off-by: Janusz Krzysztofik <jkrzyszt@tis.icnet.pl>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
sound/soc/codecs/cx20442.c

index 0e54adcc97956253582a6923d448a5a48a9acdc9..38eac9c866e1627a60350d9e9e3a0cc78d28a664 100644 (file)
@@ -138,9 +138,7 @@ static int cx20442_pm_to_v253_vls(u8 value)
        case 0:
                return V253_VLS_T;
        case (1 << CX20442_SPKOUT):
-               return V253_VLS_S1;
        case (1 << CX20442_MIC):
-               return V253_VLS_M1;
        case (1 << CX20442_SPKOUT) | (1 << CX20442_MIC):
                return V253_VLS_M1S1;
        case (1 << CX20442_TELOUT):
This page took 0.025549 seconds and 5 git commands to generate.