aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/message
diff options
context:
space:
mode:
authorJames Bottomley <jejb@mulgrave.(none)>2005-04-23 02:45:48 -0400
committerJames Bottomley <jejb@mulgrave.(none)>2005-05-20 13:53:23 -0400
commitb86fff7368b139171edab66972ea1309092f519e (patch)
tree6702dfa6a80897497b0ae106eea9995db566db21 /drivers/message
parent2496af3945bdcc5fe774b8220a415086a47f40a0 (diff)
[SCSI] mptfusion: correct Kconfig problem
The fusion Kconfig forgets to set CONFIG_FUSION, which is required to get the upper makefile to descend into the fusion directory. Add this back as a variable and make the two upper level modules select it. Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/message')
-rw-r--r--drivers/message/fusion/Kconfig6
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/message/fusion/Kconfig b/drivers/message/fusion/Kconfig
index 2d5a76f7c4a6..a0e1c96b586b 100644
--- a/drivers/message/fusion/Kconfig
+++ b/drivers/message/fusion/Kconfig
@@ -1,9 +1,14 @@
1 1
2menu "Fusion MPT device support" 2menu "Fusion MPT device support"
3 3
4config FUSION
5 bool
6 default n
7
4config FUSION_SPI 8config FUSION_SPI
5 tristate "Fusion MPT ScsiHost drivers for SPI" 9 tristate "Fusion MPT ScsiHost drivers for SPI"
6 depends on PCI && SCSI 10 depends on PCI && SCSI
11 select FUSION
7 ---help--- 12 ---help---
8 SCSI HOST support for a parallel SCSI host adapters. 13 SCSI HOST support for a parallel SCSI host adapters.
9 14
@@ -17,6 +22,7 @@ config FUSION_SPI
17config FUSION_FC 22config FUSION_FC
18 tristate "Fusion MPT ScsiHost drivers for FC" 23 tristate "Fusion MPT ScsiHost drivers for FC"
19 depends on PCI && SCSI 24 depends on PCI && SCSI
25 select FUSION
20 ---help--- 26 ---help---
21 SCSI HOST support for a Fiber Channel host adapters. 27 SCSI HOST support for a Fiber Channel host adapters.
22 28