diff options
author | Damien Le Moal <damien.lemoal@opensource.wdc.com> | 2022-01-04 06:51:43 +0100 |
---|---|---|
committer | Damien Le Moal <damien.lemoal@opensource.wdc.com> | 2022-01-05 11:33:04 +0100 |
commit | e73d737894dc4a59f232e1a1b16d968569fa0ffd (patch) | |
tree | f623dbf7008704c1b82834e5f66a3e0884395e3d /drivers/ata/Kconfig | |
parent | ata: ahci_brcm: add compile test support (diff) | |
download | linux-e73d737894dc4a59f232e1a1b16d968569fa0ffd.tar.xz linux-e73d737894dc4a59f232e1a1b16d968569fa0ffd.zip |
ata: ahci_da850: add compile test support
Add Kconfig dependendy on COMPILE_TEST to allow compile tests with
configs that do not enable ARCH_DAVINCI_DA850.
Signed-off-by: Damien Le Moal <damien.lemoal@opensource.wdc.com>
Reviewed-by: Hannes Reinecke <hare@suse.de>
Diffstat (limited to 'drivers/ata/Kconfig')
-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 2ea0dcba45c7..b100565762e9 100644 --- a/drivers/ata/Kconfig +++ b/drivers/ata/Kconfig @@ -156,7 +156,7 @@ config AHCI_BRCM config AHCI_DA850 tristate "DaVinci DA850 AHCI SATA support" - depends on ARCH_DAVINCI_DA850 + depends on ARCH_DAVINCI_DA850 || COMPILE_TEST select SATA_HOST help This option enables support for the DaVinci DA850 SoC's |