diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2010-10-13 21:07:16 -0400 |
---|---|---|
committer | Konrad Rzeszutek Wilk <konrad@kernel.org> | 2010-10-14 11:16:40 -0400 |
commit | 3e0f686e6bf347eea4a41d7d415f003c2f42b1a0 (patch) | |
tree | f1fc5ece7b718aad750a38d16c3f20b58c80e00d | |
parent | cb655d0f3d57c23db51b981648e452988c0223f9 (diff) |
ibft: fix kconfig dependencies
Fix kconfig dependency warning to satisfy dependencies:
warning: (BE2ISCSI && SCSI_LOWLEVEL && PCI && SCSI && NET || ISCSI_IBFT && ISCSI_IBFT_FIND && SCSI) selects ISCSI_BOOT_SYSFS which has unmet direct dependencies (SCSI_LOWLEVEL && SCSI)
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Peter Jones <pjones@redhat.com>
Signed-off-by: Konrad Rzeszutek Wilk <konrad@kernel.org>
-rw-r--r-- | drivers/firmware/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/firmware/Kconfig b/drivers/firmware/Kconfig index 280c9b5ad9e3..88a3ae6cd023 100644 --- a/drivers/firmware/Kconfig +++ b/drivers/firmware/Kconfig | |||
@@ -125,7 +125,7 @@ config ISCSI_IBFT_FIND | |||
125 | config ISCSI_IBFT | 125 | config ISCSI_IBFT |
126 | tristate "iSCSI Boot Firmware Table Attributes module" | 126 | tristate "iSCSI Boot Firmware Table Attributes module" |
127 | select ISCSI_BOOT_SYSFS | 127 | select ISCSI_BOOT_SYSFS |
128 | depends on ISCSI_IBFT_FIND && SCSI | 128 | depends on ISCSI_IBFT_FIND && SCSI && SCSI_LOWLEVEL |
129 | default n | 129 | default n |
130 | help | 130 | help |
131 | This option enables support for detection and exposing of iSCSI | 131 | This option enables support for detection and exposing of iSCSI |