[PATCH v1 2/2] memory: tegra: Enable compile testing for all drivers

From: Dmitry Osipenko
Date: Mon May 10 2021 - 17:37:47 EST


Enable compile testing for all Tegra memory drivers.

Signed-off-by: Dmitry Osipenko <digetx@xxxxxxxxx>
---
drivers/memory/tegra/Kconfig | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/memory/tegra/Kconfig b/drivers/memory/tegra/Kconfig
index a70967a56e52..a910f661105f 100644
--- a/drivers/memory/tegra/Kconfig
+++ b/drivers/memory/tegra/Kconfig
@@ -2,7 +2,7 @@
config TEGRA_MC
bool "NVIDIA Tegra Memory Controller support"
default y
- depends on ARCH_TEGRA
+ depends on (ARCH_TEGRA || COMPILE_TEST)
select INTERCONNECT
help
This driver supports the Memory Controller (MC) hardware found on
@@ -11,7 +11,7 @@ config TEGRA_MC
config TEGRA20_EMC
tristate "NVIDIA Tegra20 External Memory Controller driver"
default y
- depends on TEGRA_MC && ARCH_TEGRA_2x_SOC
+ depends on TEGRA_MC && (ARCH_TEGRA_2x_SOC || COMPILE_TEST)
select DEVFREQ_GOV_SIMPLE_ONDEMAND
select PM_DEVFREQ
help
@@ -23,7 +23,7 @@ config TEGRA20_EMC
config TEGRA30_EMC
tristate "NVIDIA Tegra30 External Memory Controller driver"
default y
- depends on TEGRA_MC && ARCH_TEGRA_3x_SOC
+ depends on TEGRA_MC && (ARCH_TEGRA_3x_SOC || COMPILE_TEST)
select PM_OPP
help
This driver is for the External Memory Controller (EMC) found on
@@ -34,7 +34,7 @@ config TEGRA30_EMC
config TEGRA124_EMC
tristate "NVIDIA Tegra124 External Memory Controller driver"
default y
- depends on TEGRA_MC && ARCH_TEGRA_124_SOC
+ depends on TEGRA_MC && (ARCH_TEGRA_124_SOC || COMPILE_TEST)
select TEGRA124_CLK_EMC
select PM_OPP
help
@@ -49,7 +49,7 @@ config TEGRA210_EMC_TABLE

config TEGRA210_EMC
tristate "NVIDIA Tegra210 External Memory Controller driver"
- depends on TEGRA_MC && ARCH_TEGRA_210_SOC
+ depends on TEGRA_MC && (ARCH_TEGRA_210_SOC || COMPILE_TEST)
select TEGRA210_EMC_TABLE
help
This driver is for the External Memory Controller (EMC) found on
--
2.30.2