diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2010-08-18 12:28:43 -0400 |
---|---|---|
committer | James Bottomley <James.Bottomley@suse.de> | 2010-09-09 16:34:01 -0400 |
commit | 47259658ed9fad837541b738f9375d38022daa14 (patch) | |
tree | 50ec54424d90ec556ca6c980b79efa15002657b0 /drivers/scsi/Kconfig | |
parent | 0caeb91c8d9ae6398bfe46ce70892e965353f613 (diff) |
[SCSI] fix kconfig dependency warnings related to SCSI_SAS_ATTRS
Fix kconfig dependency warnings in scsi/Kconfig:
warning: (SCSI_SAS_LIBSAS && SCSI || SCSI_MPT2SAS && SCSI_LOWLEVEL && PCI && SCSI || FUSION_SAS && FUSION && PCI && SCSI) selects SCSI_SAS_ATTRS which has unmet direct dependencies (SCSI && BLK_DEV_BSG)
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/scsi/Kconfig')
-rw-r--r-- | drivers/scsi/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/scsi/Kconfig b/drivers/scsi/Kconfig index a6fdcf4cf74a..2e9632e2c98b 100644 --- a/drivers/scsi/Kconfig +++ b/drivers/scsi/Kconfig | |||
@@ -316,7 +316,8 @@ config SCSI_ISCSI_ATTRS | |||
316 | 316 | ||
317 | config SCSI_SAS_ATTRS | 317 | config SCSI_SAS_ATTRS |
318 | tristate "SAS Transport Attributes" | 318 | tristate "SAS Transport Attributes" |
319 | depends on SCSI && BLK_DEV_BSG | 319 | depends on SCSI |
320 | select BLK_DEV_BSG | ||
320 | help | 321 | help |
321 | If you wish to export transport-specific information about | 322 | If you wish to export transport-specific information about |
322 | each attached SAS device to sysfs, say Y. | 323 | each attached SAS device to sysfs, say Y. |