diff options
author | Al Viro <viro@www.linux.org.uk> | 2005-08-23 22:45:01 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-08-23 18:43:39 -0700 |
commit | e9bcb173dd1747075214a1ccdb65dc6320cae49d (patch) | |
tree | f6ca23abfd0777f7e3c571efbd58b67af3eaf1e8 | |
parent | ac6babd26ce514e0017ec5809051ea6cdc44c8f6 (diff) | |
download | op-kernel-dev-e9bcb173dd1747075214a1ccdb65dc6320cae49d.zip op-kernel-dev-e9bcb173dd1747075214a1ccdb65dc6320cae49d.tar.gz |
[PATCH] Kconfig fix (epca on 64bit)
epca is broken on 64bit; marked as such
Signed-off-by: Al Viro <viro@parcelfarce.linux.theplanet.co.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | drivers/char/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/Kconfig b/drivers/char/Kconfig index 4f27e55..4279304 100644 --- a/drivers/char/Kconfig +++ b/drivers/char/Kconfig @@ -138,7 +138,7 @@ config CYZ_INTR config DIGIEPCA tristate "Digiboard Intelligent Async Support" - depends on SERIAL_NONSTANDARD && BROKEN_ON_SMP + depends on SERIAL_NONSTANDARD && BROKEN_ON_SMP && (!64BIT || BROKEN) ---help--- This is a driver for Digi International's Xx, Xeve, and Xem series of cards which provide multiple serial ports. You would need |