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_suspend.c | |
parent | 4deb7bcc4fe436a0e11c13b8404d49eaaa79f305 (diff) | |
parent | ee1ebbd18e2a1e3b8a5b9ac9fba155177e2af4a1 (diff) |
Merge pull request #1029 from islmit01/im/fix_includes
Fix order of includes
Diffstat (limited to 'lib/psci/psci_suspend.c')
-rw-r--r-- | lib/psci/psci_suspend.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/psci/psci_suspend.c b/lib/psci/psci_suspend.c index 47988926..0d1589ee 100644 --- a/lib/psci/psci_suspend.c +++ b/lib/psci/psci_suspend.c @@ -4,10 +4,10 @@ * SPDX-License-Identifier: BSD-3-Clause */ -#include <assert.h> -#include <bl_common.h> #include <arch.h> #include <arch_helpers.h> +#include <assert.h> +#include <bl_common.h> #include <context.h> #include <context_mgmt.h> #include <cpu_data.h> |