diff options
author | Andres Salomon <dilinger@queued.net> | 2008-11-06 16:53:11 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2008-12-10 11:14:46 -0500 |
commit | 01da02419da827742acd5235467f493206e83574 (patch) | |
tree | 6e3e12cd418cdaed107c596c81112d5540147359 /sound/pci/cs5535audio | |
parent | bf1e5278354856ac0260d338961560e720147681 (diff) |
ALSA: cs5535audio: for OLPC, default to Analog Input being off
Signed-off-by: Andres Salomon <dilinger@debian.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/cs5535audio')
-rw-r--r-- | sound/pci/cs5535audio/cs5535audio.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sound/pci/cs5535audio/cs5535audio.h b/sound/pci/cs5535audio/cs5535audio.h index 63190cd723c6..777703717a70 100644 --- a/sound/pci/cs5535audio/cs5535audio.h +++ b/sound/pci/cs5535audio/cs5535audio.h | |||
@@ -108,12 +108,16 @@ void olpc_mic_bias(struct snd_ac97 *ac97, int on); | |||
108 | 108 | ||
109 | static inline void olpc_capture_open(struct snd_ac97 *ac97) | 109 | static inline void olpc_capture_open(struct snd_ac97 *ac97) |
110 | { | 110 | { |
111 | /* default to Analog Input off */ | ||
112 | olpc_analog_input(ac97, 0); | ||
111 | /* enable MIC Bias for recording */ | 113 | /* enable MIC Bias for recording */ |
112 | olpc_mic_bias(ac97, 1); | 114 | olpc_mic_bias(ac97, 1); |
113 | } | 115 | } |
114 | 116 | ||
115 | static inline void olpc_capture_close(struct snd_ac97 *ac97) | 117 | static inline void olpc_capture_close(struct snd_ac97 *ac97) |
116 | { | 118 | { |
119 | /* disable Analog Input */ | ||
120 | olpc_analog_input(ac97, 0); | ||
117 | /* disable the MIC Bias (so the recording LED turns off) */ | 121 | /* disable the MIC Bias (so the recording LED turns off) */ |
118 | olpc_mic_bias(ac97, 0); | 122 | olpc_mic_bias(ac97, 0); |
119 | } | 123 | } |