diff options
author | Damien Le Moal <damien.lemoal@opensource.wdc.com> | 2022-01-04 14:59:00 +0900 |
---|---|---|
committer | Damien Le Moal <damien.lemoal@opensource.wdc.com> | 2022-01-14 15:17:16 +0900 |
commit | 28a53d3160acd7e44a39a146da20e3e672fb0d96 (patch) | |
tree | 04f414a8d68c5afbd4de5f64d52eb9440d24b2e0 /drivers/ata | |
parent | 56e18702b0c240dc3c4fde0619e8a78f5f13be97 (diff) |
ata: ahci_mtk: add compile test support
Add Kconfig dependendy on COMPILE_TEST to allow compile tests with
configs that do not enable ARCH_MEDIATEK.
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 47b7b69b88b1..305718031a3c 100644 --- a/drivers/ata/Kconfig +++ b/drivers/ata/Kconfig @@ -206,7 +206,7 @@ config AHCI_CEVA config AHCI_MTK tristate "MediaTek AHCI SATA support" - depends on ARCH_MEDIATEK + depends on ARCH_MEDIATEK || COMPILE_TEST select MFD_SYSCON select SATA_HOST help |