diff options
author | davidcunado-arm <david.cunado@arm.com> | 2017-07-20 22:01:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-20 22:01:00 +0100 |
commit | aa965e1583349b36ce7edd2b3fe9f1f461ef8b23 (patch) | |
tree | b6370d9de2f68a3b3bb2882598f77785cf0af868 /lib/psci/psci_on.c | |
parent | 4deb7bcc4fe436a0e11c13b8404d49eaaa79f305 (diff) | |
parent | ee1ebbd18e2a1e3b8a5b9ac9fba155177e2af4a1 (diff) | |
download | platform_external_arm-trusted-firmware-aa965e1583349b36ce7edd2b3fe9f1f461ef8b23.tar.gz platform_external_arm-trusted-firmware-aa965e1583349b36ce7edd2b3fe9f1f461ef8b23.tar.bz2 platform_external_arm-trusted-firmware-aa965e1583349b36ce7edd2b3fe9f1f461ef8b23.zip |
Merge pull request #1029 from islmit01/im/fix_includes
Fix order of includes
Diffstat (limited to 'lib/psci/psci_on.c')
-rw-r--r-- | lib/psci/psci_on.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/psci/psci_on.c b/lib/psci/psci_on.c index d5c9843a4..16b22c2ab 100644 --- a/lib/psci/psci_on.c +++ b/lib/psci/psci_on.c @@ -8,8 +8,8 @@ #include <arch_helpers.h> #include <assert.h> #include <bl_common.h> -#include <debug.h> #include <context_mgmt.h> +#include <debug.h> #include <platform.h> #include <stddef.h> #include "psci_private.h" |