diff options
author | Andres Salomon <dilinger@queued.net> | 2008-11-06 16:44:08 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2008-12-10 11:14:40 -0500 |
commit | 3556d18465c6e67c7a8f436428b95671add02f57 (patch) | |
tree | d7ab24c23a9fb2c9ad99588e4bf29683de60c943 /sound/pci/cs5535audio/cs5535audio.h | |
parent | c8974be5465b87414fa542cf9cca1a1ba21b8d60 (diff) |
ALSA: cs5535audio: invert EAPD for OLPC (newer than B3)
Fix an audible pop described in <http://dev.laptop.org/ticket/977>. Originally
based upon fixes by Mitch Bradley and Chris Ball.
Signed-off-by: Andres Salomon <dilinger@debian.org>
Diffstat (limited to 'sound/pci/cs5535audio/cs5535audio.h')
-rw-r--r-- | sound/pci/cs5535audio/cs5535audio.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/sound/pci/cs5535audio/cs5535audio.h b/sound/pci/cs5535audio/cs5535audio.h index adcb213eb276..93602cf2858a 100644 --- a/sound/pci/cs5535audio/cs5535audio.h +++ b/sound/pci/cs5535audio/cs5535audio.h | |||
@@ -103,9 +103,16 @@ int snd_cs5535audio_resume(struct pci_dev *pci); | |||
103 | #endif | 103 | #endif |
104 | 104 | ||
105 | #ifdef CONFIG_OLPC | 105 | #ifdef CONFIG_OLPC |
106 | int olpc_quirks(struct snd_card *card, struct snd_ac97 *ac97); | 106 | void __devinit olpc_prequirks(struct snd_card *card, |
107 | struct snd_ac97_template *ac97); | ||
108 | int __devinit olpc_quirks(struct snd_card *card, struct snd_ac97 *ac97); | ||
107 | #else | 109 | #else |
108 | #define olpc_quirks(arg, arg2) (0) | 110 | static inline void olpc_prequirks(struct snd_card *card, |
111 | struct snd_ac97_template *ac97) { } | ||
112 | static inline int olpc_quirks(struct snd_card *card, struct snd_ac97 *ac97) | ||
113 | { | ||
114 | return 0; | ||
115 | } | ||
109 | #endif | 116 | #endif |
110 | 117 | ||
111 | int __devinit snd_cs5535audio_pcm(struct cs5535audio *cs5535audio); | 118 | int __devinit snd_cs5535audio_pcm(struct cs5535audio *cs5535audio); |