瀏覽代碼

[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>
James Bottomley 20 年之前
父節點
當前提交
b86fff7368
共有 1 個文件被更改,包括 6 次插入0 次删除
  1. 6 0
      drivers/message/fusion/Kconfig

+ 6 - 0
drivers/message/fusion/Kconfig

@@ -1,9 +1,14 @@
 
 menu "Fusion MPT device support"
 
+config FUSION
+	bool
+	default n
+
 config FUSION_SPI
 	tristate "Fusion MPT ScsiHost drivers for SPI"
 	depends on PCI && SCSI
+	select FUSION
 	---help---
 	  SCSI HOST support for a parallel SCSI host adapters.
 
@@ -17,6 +22,7 @@ config FUSION_SPI
 config FUSION_FC
 	tristate "Fusion MPT ScsiHost drivers for FC"
 	depends on PCI && SCSI
+	select FUSION
 	---help---
 	  SCSI HOST support for a Fiber Channel host adapters.