diff options
author | Al Viro <viro@www.linux.org.uk> | 2005-05-04 05:39:32 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-05-04 07:33:13 -0700 |
commit | 7fbacd5213a03b262bb17a826b166900e8b168ac (patch) | |
tree | 7f354174eccaaf6927e950829b8fbcdcc68570fb /drivers/parport/Kconfig | |
parent | 5cae841b13f23ccdf7e38b2400b5cf57deb57ccf (diff) | |
download | linux-3.10-7fbacd5213a03b262bb17a826b166900e8b168ac.tar.gz linux-3.10-7fbacd5213a03b262bb17a826b166900e8b168ac.tar.bz2 linux-3.10-7fbacd5213a03b262bb17a826b166900e8b168ac.zip |
[PATCH] ISA_DMA Kconfig fixes - part 2 (parport_pc)
Part of parport_pc that uses ISA DMA helpers made conditional on
CONFIG_ISA_DMA_API. As the result, driver got usable for boxen that do
not have ISA DMA stuff and have normal PCI parport card stuck into
them - these never use DMA anyway.
Signed-off-by: Al Viro <viro@parcelfarce.linux.theplanet.co.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/parport/Kconfig')
-rw-r--r-- | drivers/parport/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/parport/Kconfig b/drivers/parport/Kconfig index 731010e0e6f..16a2e6ae37f 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) && (!SPARC32 || BROKEN) + depends on PARPORT && (!SPARC64 || PCI) && !SPARC32 ---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 |