]> git.hungrycats.org Git - linux/commitdiff
[PATCH] PATCH 2.5: kconfig spurious bool default value (2_3)
authorGreg Banks <gnb@alphalink.com.au>
Mon, 15 Jul 2002 05:57:22 +0000 (22:57 -0700)
committerLinus Torvalds <torvalds@penguin.transmeta.com>
Mon, 15 Jul 2002 05:57:22 +0000 (22:57 -0700)
 Some CML1 rule contributors seem to think that the "bool" statement
 takes a third argument which is the default value.  It doesn't.

arch/parisc/config.in

index bdebbf28a828f4f7d825a3f2fb83176fae7677bd..56e1f3e901667b843fefe507dd5056bc076173b0 100644 (file)
@@ -24,14 +24,14 @@ bool 'Kernel Debugger support' CONFIG_KWDB
 # bool 'GSC/Gecko bus support' CONFIG_GSC y
 define_bool CONFIG_GSC y
 
-bool 'U2/Uturn I/O MMU' CONFIG_IOMMU_CCIO y
-bool 'LASI I/O support' CONFIG_GSC_LASI y
+bool 'U2/Uturn I/O MMU' CONFIG_IOMMU_CCIO
+bool 'LASI I/O support' CONFIG_GSC_LASI
 
-bool 'PCI support' CONFIG_PCI y
+bool 'PCI support' CONFIG_PCI
 
 if [ "$CONFIG_PCI" = "y" ]; then
-       bool 'GSCtoPCI/DINO PCI support' CONFIG_GSC_DINO y
-       bool 'LBA/Elroy PCI support' CONFIG_PCI_LBA n
+       bool 'GSCtoPCI/DINO PCI support' CONFIG_GSC_DINO
+       bool 'LBA/Elroy PCI support' CONFIG_PCI_LBA
 fi 
 
 if [ "$CONFIG_PCI_LBA" = "y" ]; then