diff options
author | Damien Le Moal | 2022-01-04 15:11:15 +0900 |
---|---|---|
committer | Damien Le Moal | 2022-01-14 15:17:16 +0900 |
commit | a33a348d0aca38107c435eef20c449cf13dd9447 (patch) | |
tree | 4366ecf7a27c39d87e181c62ac4424e2960932b4 /drivers/ata | |
parent | b7c9b00fb050c6b3fea6e32f1adbe0194296eb1f (diff) |
ata: ahci_seattle: add compile test support
Add Kconfig dependendy on COMPILE_TEST to allow compile tests with
configs that do not enable ARCH_SEATTLE.
Signed-off-by: Damien Le Moal <damien.lemoal@opensource.wdc.com>
Reviewed-by: Hannes Reinecke <hare@suse.de>
Diffstat (limited to 'drivers/ata')
-rw-r--r-- | drivers/ata/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/Kconfig b/drivers/ata/Kconfig index f96a29b1c8a3..ff5bb8e0d601 100644 --- a/drivers/ata/Kconfig +++ b/drivers/ata/Kconfig @@ -294,7 +294,7 @@ config SATA_GEMINI config SATA_AHCI_SEATTLE tristate "AMD Seattle 6.0Gbps AHCI SATA host controller support" - depends on ARCH_SEATTLE + depends on ARCH_SEATTLE || COMPILE_TEST select SATA_HOST help This option enables support for AMD Seattle SATA host controller. |