diff options
author | Roland Dreier <rolandd@cisco.com> | 2008-04-21 18:19:14 -0700 |
---|---|---|
committer | Roland Dreier <rolandd@cisco.com> | 2008-04-21 18:19:14 -0700 |
commit | 480f58e6143135680fc1e61ea2dedc72cf3d1f95 (patch) | |
tree | 2ecc245be8c0085172694e0ccdb61ea5875cf07e /drivers/infiniband/hw/ipath | |
parent | 37a6ab5227d856c175d8f3586050997bb10628d8 (diff) |
IB/ipath: Remove dependency on PCI_MSI || HT_IRQ
Before IBA7220 support was added, the ipath driver didn't support any
hardware unless PCI_MSI and/or HT_IRQ was enabled. However, the
IBA7220 can generate INTx interrupts, so it makes sense to allow the
driver to be build even if PCI_MSI=n and HT_IRQ=n.
Signed-off-by: Roland Dreier <rolandd@cisco.com>
Diffstat (limited to 'drivers/infiniband/hw/ipath')
-rw-r--r-- | drivers/infiniband/hw/ipath/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/ipath/Kconfig b/drivers/infiniband/hw/ipath/Kconfig index 044da5828a78..3c7968f25ec2 100644 --- a/drivers/infiniband/hw/ipath/Kconfig +++ b/drivers/infiniband/hw/ipath/Kconfig @@ -1,6 +1,6 @@ config INFINIBAND_IPATH tristate "QLogic InfiniPath Driver" - depends on (PCI_MSI || HT_IRQ) && 64BIT && NET + depends on 64BIT && NET ---help--- This is a driver for QLogic InfiniPath host channel adapters, including InfiniBand verbs support. This driver allows these |