diff options
author | Damien Le Moal <damien.lemoal@opensource.wdc.com> | 2022-01-04 07:08:01 +0100 |
---|---|---|
committer | Damien Le Moal <damien.lemoal@opensource.wdc.com> | 2022-01-14 07:17:16 +0100 |
commit | 3d98cbf7096ea50bbb4256c7781555bb69a07e52 (patch) | |
tree | 283ae2ee142833fd7b8b4627d5800b4acfb002a3 /drivers/ata/Kconfig | |
parent | ata: ahci_sunxi: add compile test support (diff) | |
download | linux-3d98cbf7096ea50bbb4256c7781555bb69a07e52.tar.xz linux-3d98cbf7096ea50bbb4256c7781555bb69a07e52.zip |
ata: ahci_tegra: add compile test support
Add Kconfig dependendy on COMPILE_TEST to allow compile tests with
configs that do not enable ARCH_TEGRA.
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 4da5e9410126..49ce1e0d19d7 100644 --- a/drivers/ata/Kconfig +++ b/drivers/ata/Kconfig @@ -246,7 +246,7 @@ config AHCI_SUNXI config AHCI_TEGRA tristate "NVIDIA Tegra AHCI SATA support" - depends on ARCH_TEGRA + depends on ARCH_TEGRA || COMPILE_TEST select SATA_HOST help This option enables support for the NVIDIA Tegra SoC's |