diff options
author | Yatharth Kochar <yatharth.kochar@arm.com> | 2015-12-09 14:22:47 +0000 |
---|---|---|
committer | Yatharth Kochar <yatharth.kochar@arm.com> | 2015-12-09 15:16:10 +0000 |
commit | ca8b7d51c8d8f6ecddcc39e78d80b7a803054d83 (patch) | |
tree | 607445aaeae8e6d99b7d43ae76a4dfdde9fa16aa | |
parent | 05a91fb008c31f939a9590318e2914b44cdad165 (diff) |
Include psci.h from tegra platform header
The `plat/nvidia/tegra/include/tegra_private.h` file uses resources
from psci.h (for example, psci_power_state_t) but does not explicitly
include psci.h. This does not currently cause a problem since psci.h
is indirectly included via other headers. However, this may not be
the case in future.
This patch explicitly includes psci.h from tegra_private.h
Change-Id: Ia991147898dbd117c1d3496a95850995a5554c05
-rw-r--r-- | plat/nvidia/tegra/include/tegra_private.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plat/nvidia/tegra/include/tegra_private.h b/plat/nvidia/tegra/include/tegra_private.h index aca9db72..6fa943ff 100644 --- a/plat/nvidia/tegra/include/tegra_private.h +++ b/plat/nvidia/tegra/include/tegra_private.h @@ -33,6 +33,7 @@ #include <arch.h> #include <platform_def.h> +#include <psci.h> #include <xlat_tables.h> /******************************************************************************* |