diff options
author | James Bottomley <James.Bottomley@steeleye.com> | 2007-07-28 11:07:36 -0400 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.localdomain> | 2007-07-31 10:40:48 -0500 |
commit | 15617ff66c777b008e170f9c5b0e8a9854937648 (patch) | |
tree | 6de4a5212ee27edb663853407f252b94f3b0550f /drivers | |
parent | 8e9a8a0d56c5d9d87adbefbbc8c8728c529fd95a (diff) | |
download | linux-3.10-15617ff66c777b008e170f9c5b0e8a9854937648.tar.gz linux-3.10-15617ff66c777b008e170f9c5b0e8a9854937648.tar.bz2 linux-3.10-15617ff66c777b008e170f9c5b0e8a9854937648.zip |
[SCSI] libsas: fix build dependencies on libata
If you have the libsas with ATA support, it needs libata to function.
The problem is that if you compile in libsas, you can't build libata
as a module (however, vice versa you can).
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/scsi/libsas/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/scsi/libsas/Kconfig b/drivers/scsi/libsas/Kconfig index 3a3c1ac9c6c..c01a40d321d 100644 --- a/drivers/scsi/libsas/Kconfig +++ b/drivers/scsi/libsas/Kconfig @@ -32,7 +32,8 @@ config SCSI_SAS_LIBSAS config SCSI_SAS_ATA bool "ATA support for libsas (requires libata)" - depends on SCSI_SAS_LIBSAS && ATA + depends on SCSI_SAS_LIBSAS + depends on ATA = y || ATA = SCSI_SAS_LIBSAS help Builds in ATA support into libsas. Will necessitate the loading of libata along with libsas. |