Skip to content

Commit

Permalink
ALSA: cs5535audio: for OLPC, default to Analog Input being off
Browse files Browse the repository at this point in the history
Signed-off-by: Andres Salomon <dilinger@debian.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
  • Loading branch information
Andres Salomon authored and Takashi Iwai committed Dec 10, 2008
1 parent bf1e527 commit 01da024
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions sound/pci/cs5535audio/cs5535audio.h
Original file line number Diff line number Diff line change
Expand Up @@ -108,12 +108,16 @@ void olpc_mic_bias(struct snd_ac97 *ac97, int on);

static inline void olpc_capture_open(struct snd_ac97 *ac97)
{
/* default to Analog Input off */
olpc_analog_input(ac97, 0);
/* enable MIC Bias for recording */
olpc_mic_bias(ac97, 1);
}

static inline void olpc_capture_close(struct snd_ac97 *ac97)
{
/* disable Analog Input */
olpc_analog_input(ac97, 0);
/* disable the MIC Bias (so the recording LED turns off) */
olpc_mic_bias(ac97, 0);
}
Expand Down

0 comments on commit 01da024

Please sign in to comment.