aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sound/pci/cs5535audio/cs5535audio.h4
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
109static inline void olpc_capture_open(struct snd_ac97 *ac97) 109static 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
115static inline void olpc_capture_close(struct snd_ac97 *ac97) 117static 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}