summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Viro <viro@parcelfarce.linux.theplanet.co.uk>2004-10-20 03:16:02 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2004-10-20 03:16:02 -0700
commitf878ebd9cc586f7a687f28ff4f4db24e70b3e40a (patch)
tree5450c676e0b94ca039959c1b2d766cfc0b95f869
parent2e719f1ddfe000ed81e28508f1bcdfac39857190 (diff)
[PATCH] sparc32 kconfig fixes
a) CONFIG_VT should set CONFIG_INPUT b) parport_pc and serial/8250 are broken for sparc32 same as for sparc64 Signed-off-by: Al Viro <viro@parcelfarce.linux.theplanet.co.uk> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r--arch/sparc/Kconfig1
-rw-r--r--drivers/parport/Kconfig2
-rw-r--r--drivers/serial/Kconfig2
-rw-r--r--sound/Kconfig2
4 files changed, 4 insertions, 3 deletions
diff --git a/arch/sparc/Kconfig b/arch/sparc/Kconfig
index 3d978f461a98..db6f3ca6089e 100644
--- a/arch/sparc/Kconfig
+++ b/arch/sparc/Kconfig
@@ -27,6 +27,7 @@ menu "General machine setup"
config VT
bool
+ select INPUT
default y
---help---
If you say Y here, you will get support for terminal devices with
diff --git a/drivers/parport/Kconfig b/drivers/parport/Kconfig
index 156e46af7c12..db8fe4c49590 100644
--- a/drivers/parport/Kconfig
+++ b/drivers/parport/Kconfig
@@ -34,7 +34,7 @@ config PARPORT
config PARPORT_PC
tristate "PC-style hardware"
- depends on PARPORT && (!SPARC64 || PCI)
+ depends on PARPORT && (!SPARC64 || PCI) && (!SPARC32 || BROKEN)
---help---
You should say Y here if you have a PC-style parallel port. All
IBM PC compatible computers and some Alphas have PC-style
diff --git a/drivers/serial/Kconfig b/drivers/serial/Kconfig
index 2df6d5490d14..b99b68df8a8f 100644
--- a/drivers/serial/Kconfig
+++ b/drivers/serial/Kconfig
@@ -10,7 +10,7 @@ menu "Serial drivers"
# The new 8250/16550 serial drivers
config SERIAL_8250
tristate "8250/16550 and compatible serial support"
- depends on (BROKEN || !SPARC64)
+ depends on (BROKEN || !(SPARC64 || SPARC32))
select SERIAL_CORE
---help---
This selects whether you want to include the driver for the standard
diff --git a/sound/Kconfig b/sound/Kconfig
index 56f5cc726ccf..1e4511a7b6a2 100644
--- a/sound/Kconfig
+++ b/sound/Kconfig
@@ -70,7 +70,7 @@ source "sound/parisc/Kconfig"
endmenu
menu "Open Sound System"
- depends on SOUND!=n && (BROKEN || !SPARC64)
+ depends on SOUND!=n && (BROKEN || !(SPARC32 || SPARC64))
config SOUND_PRIME
tristate "Open Sound System (DEPRECATED)"