It depends on L3 support from 2.4 kernel (CONFIG_L3) that never got merged into mainline. Since there's no way to use it on any of supported machines (iPaq h3100 or h3600), better drop it for now. It can be reimplemented later using ASoC infrastructure (there's already a driver for uda1341 codec in mainline, so only CPU and machine parts need to be written). Signed-off-by: Dmitry Artamonow <mad_soft@inbox.ru> Cc: Russell King <linux@arm.linux.org.uk> Signed-off-by: Takashi Iwai <tiwai@suse.de>
		
			
				
	
	
		
			16 lines
		
	
	
		
			374 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			374 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
#
 | 
						|
# Makefile for ALSA
 | 
						|
# Copyright (c) 2001 by Jaroslav Kysela <perex@perex.cz>
 | 
						|
#
 | 
						|
 | 
						|
snd-i2c-objs := i2c.o
 | 
						|
snd-cs8427-objs := cs8427.o
 | 
						|
snd-tea6330t-objs := tea6330t.o
 | 
						|
 | 
						|
obj-$(CONFIG_SND) += other/
 | 
						|
 | 
						|
# Toplevel Module Dependency
 | 
						|
obj-$(CONFIG_SND_INTERWAVE_STB) += snd-tea6330t.o snd-i2c.o
 | 
						|
obj-$(CONFIG_SND_ICE1712) += snd-cs8427.o snd-i2c.o
 | 
						|
obj-$(CONFIG_SND_ICE1724) += snd-i2c.o
 |