diff options
author | Eli Billauer <eli.billauer@gmail.com> | 2014-03-21 07:41:05 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-03-21 15:24:09 -0400 |
commit | 94debda32429e1a348fec8543245f1190a92d68c (patch) | |
tree | 5f4cd8d7c3f15b673c7170a723b9b6a1ac3d01c0 | |
parent | 87b92503c1d2872131104e7acbf4b9bd9092e52e (diff) |
staging: xillybus: XILLYBUS_PCIE depends on PCI_MSI
xillybus_pcie.c will compile and load properly on PCI only, but will do
nothing useful without PCI_MSI.
PCI_MSI depends on PCI, so depending on PCI_MSI covers both.
Signed-off-by: Eli Billauer <eli.billauer@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/xillybus/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/xillybus/Kconfig b/drivers/staging/xillybus/Kconfig index 1b88330dac59..b53bdf12da0d 100644 --- a/drivers/staging/xillybus/Kconfig +++ b/drivers/staging/xillybus/Kconfig | |||
@@ -17,7 +17,7 @@ if XILLYBUS | |||
17 | 17 | ||
18 | config XILLYBUS_PCIE | 18 | config XILLYBUS_PCIE |
19 | tristate "Xillybus over PCIe" | 19 | tristate "Xillybus over PCIe" |
20 | depends on PCI | 20 | depends on PCI_MSI |
21 | help | 21 | help |
22 | Set to M if you want Xillybus to use PCI Express for communicating | 22 | Set to M if you want Xillybus to use PCI Express for communicating |
23 | with the FPGA. | 23 | with the FPGA. |