Skip to content

Commit

Permalink
ALSA: cs5535audio: ensure MIC Bias/Analog Input bail if not on an OLP…
Browse files Browse the repository at this point in the history
…C machine

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 b5ccc57 commit 0fb497f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions sound/pci/cs5535audio/cs5535audio_olpc.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ void olpc_analog_input(struct snd_ac97 *ac97, int on)
{
int err;

if (!machine_is_olpc())
return;

/* update the High Pass Filter (via AC97_AD_TEST2) */
err = snd_ac97_update_bits(ac97, AC97_AD_TEST2,
1 << AC97_AD_HPFD_SHIFT, on << AC97_AD_HPFD_SHIFT);
Expand All @@ -48,6 +51,9 @@ void olpc_mic_bias(struct snd_ac97 *ac97, int on)
{
int err;

if (!machine_is_olpc())
return;

on = on ? 0 : 1;
err = snd_ac97_update_bits(ac97, AC97_AD_MISC,
1 << AC97_AD_VREFD_SHIFT, on << AC97_AD_VREFD_SHIFT);
Expand Down

0 comments on commit 0fb497f

Please sign in to comment.