aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitry Osipenko <digetx@gmail.com>2021-09-12 23:29:04 +0300
committerThierry Reding <treding@nvidia.com>2021-10-04 21:27:40 +0200
commit0d7281b27af9d9602a6d62a132f19932b1b0fd88 (patch)
treef1df3664361cc336b4e03cfd43a2074e96f8c07f
parentsoc/tegra: irq: Add stubs needed for compile testing (diff)
downloadlinux-dev-0d7281b27af9d9602a6d62a132f19932b1b0fd88.tar.xz
linux-dev-0d7281b27af9d9602a6d62a132f19932b1b0fd88.zip
soc/tegra: pm: Make stubs usable for compile testing
The PM stubs need to depend on ARCH_TEGRA in order to be usable for compile-testing of tegra-cpuidle driver. Add the dependency. Signed-off-by: Dmitry Osipenko <digetx@gmail.com> Signed-off-by: Thierry Reding <treding@nvidia.com>
-rw-r--r--include/soc/tegra/pm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/soc/tegra/pm.h b/include/soc/tegra/pm.h
index 433878927026..ce4d0b1bd0d6 100644
--- a/include/soc/tegra/pm.h
+++ b/include/soc/tegra/pm.h
@@ -17,7 +17,7 @@ enum tegra_suspend_mode {
TEGRA_SUSPEND_NOT_READY,
};
-#if defined(CONFIG_PM_SLEEP) && defined(CONFIG_ARM)
+#if defined(CONFIG_PM_SLEEP) && defined(CONFIG_ARM) && defined(CONFIG_ARCH_TEGRA)
enum tegra_suspend_mode
tegra_pm_validate_suspend_mode(enum tegra_suspend_mode mode);