3c55494670
Previously, OLPC support for the mic extensions was only enabled in the ALSA driver if CONFIG_OLPC and CONFIG_MGEODE_LX were both set. This was because the old geode GPIO code was written in a manner that assumed CONFIG_MGEODE_LX. With the new cs553x-gpio driver, this is no longer the case; as such, we can drop the requirement on CONFIG_MGEODE_LX and instead include a requirement on GPIOLIB. We use the generic GPIO API rather than the cs553x-specific API. Signed-off-by: Andres Salomon <dilinger@collabora.co.uk> Cc: Takashi Iwai <tiwai@suse.de> Cc: Jordan Crouse <jordan@cosmicpenguin.net> Cc: David Brownell <david-b@pacbell.net> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
11 lines
268 B
Makefile
11 lines
268 B
Makefile
#
|
|
# Makefile for cs5535audio
|
|
#
|
|
|
|
snd-cs5535audio-y := cs5535audio.o cs5535audio_pcm.o
|
|
snd-cs5535audio-$(CONFIG_PM) += cs5535audio_pm.o
|
|
snd-cs5535audio-$(CONFIG_OLPC) += cs5535audio_olpc.o
|
|
|
|
# Toplevel Module Dependency
|
|
obj-$(CONFIG_SND_CS5535AUDIO) += snd-cs5535audio.o
|