57d4bf6d8e
This is a 2nd cut at adding support for OLPC analog input. Signed-off-by: Jaya Kumar <jayakumar.lkml@gmail.com> Signed-off-by: Andres Salomon <dilinger@debian.org>
13 lines
283 B
Makefile
13 lines
283 B
Makefile
#
|
|
# Makefile for cs5535audio
|
|
#
|
|
|
|
snd-cs5535audio-y := cs5535audio.o cs5535audio_pcm.o
|
|
snd-cs5535audio-$(CONFIG_PM) += cs5535audio_pm.o
|
|
|
|
ifdef CONFIG_OLPC
|
|
snd-cs5535audio-objs += cs5535audio_olpc.o
|
|
endif
|
|
|
|
# Toplevel Module Dependency
|
|
obj-$(CONFIG_SND_CS5535AUDIO) += snd-cs5535audio.o
|