From: Pete P. <pp...@us...> - 2002-09-26 05:39:44
|
Update of /cvsroot/linux-mips/linux/drivers/sound In directory usw-pr-cvs1:/tmp/cvs-serv1799/drivers/sound Modified Files: Config.in Makefile Log Message: Split up the Pb board and Au CPU dependencies properly. Index: Config.in =================================================================== RCS file: /cvsroot/linux-mips/linux/drivers/sound/Config.in,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- Config.in 7 Mar 2002 09:15:16 -0000 1.14 +++ Config.in 26 Sep 2002 05:39:40 -0000 1.15 @@ -59,8 +59,11 @@ if [ "$CONFIG_DDB5477" = "y" ]; then dep_tristate ' NEC Vrc5477 AC97 sound' CONFIG_SOUND_VRC5477 $CONFIG_SOUND fi -if [ "$CONFIG_MIPS_AU1000" = "y" ]; then - dep_tristate ' Au1000 Sound' CONFIG_SOUND_AU1000 $CONFIG_SOUND +if [ "$CONFIG_CPU_AU1X00" = "y" ]; then + dep_tristate ' Au1x00 Sound' CONFIG_SOUND_AU1X00 $CONFIG_SOUND +fi +if [ "$CONFIG_MIPS_AU1x00" = "y" ]; then + dep_tristate ' Au1x00 I2S Sound' CONFIG_SOUND_AU1I2S $CONFIG_SOUND fi dep_tristate ' Trident 4DWave DX/NX, SiS 7018 or ALi 5451 PCI Audio Core' CONFIG_SOUND_TRIDENT $CONFIG_SOUND Index: Makefile =================================================================== RCS file: /cvsroot/linux-mips/linux/drivers/sound/Makefile,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- Makefile 7 Mar 2002 09:15:16 -0000 1.13 +++ Makefile 26 Sep 2002 05:39:40 -0000 1.14 @@ -66,7 +66,7 @@ obj-$(CONFIG_SOUND_ES1371) += es1371.o ac97_codec.o obj-$(CONFIG_SOUND_VRC5477) += nec_vrc5477.o ac97_codec.o obj-$(CONFIG_SOUND_IT8172) += ite8172.o ac97_codec.o -obj-$(CONFIG_SOUND_AU1000) += au1000.o ac97_codec.o +obj-$(CONFIG_SOUND_AU1X00) += au1000.o ac97_codec.o obj-$(CONFIG_SOUND_ESSSOLO1) += esssolo1.o obj-$(CONFIG_SOUND_FUSION) += cs46xx.o ac97_codec.o obj-$(CONFIG_SOUND_MAESTRO) += maestro.o |