From: Dmitry Osipenko Date: Sun, 12 Sep 2021 20:29:04 +0000 (+0300) Subject: soc/tegra: pm: Make stubs usable for compile testing X-Git-Tag: block-5.16-2021-11-13~61^2~24^2~5 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=0d7281b27af9d9602a6d62a132f19932b1b0fd88;p=linux-block.git 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 Signed-off-by: Thierry Reding --- 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);