diff options
author | Damien Le Moal <damien.lemoal@opensource.wdc.com> | 2022-01-04 15:06:12 +0900 |
---|---|---|
committer | Damien Le Moal <damien.lemoal@opensource.wdc.com> | 2022-01-14 15:17:16 +0900 |
commit | c05b911afffa6a1842dd3bb9d54a8db178722e40 (patch) | |
tree | 8abdc9dd8ca1690e6c612491af157ed5fd316cc1 /drivers/ata | |
parent | 368c7edc15e5e505ab56d6caad60fd11ee2bc428 (diff) |
ata: ahci_sunxi: add compile test support
Add Kconfig dependendy on COMPILE_TEST to allow compile tests with
configs that do not enable ARCH_SUNXI.
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 830e781e50c3..4da5e9410126 100644 --- a/drivers/ata/Kconfig +++ b/drivers/ata/Kconfig @@ -236,7 +236,7 @@ config AHCI_OCTEON config AHCI_SUNXI tristate "Allwinner sunxi AHCI SATA support" - depends on ARCH_SUNXI + depends on ARCH_SUNXI || COMPILE_TEST select SATA_HOST help This option enables support for the Allwinner sunxi SoC's |