diff options
author | Dan Handley <dan.handley@arm.com> | 2014-04-09 13:13:04 +0100 |
---|---|---|
committer | Dan Handley <dan.handley@arm.com> | 2014-05-06 12:35:02 +0100 |
commit | 35e98e5588d09145f7d0d4d98624f6b75321a187 (patch) | |
tree | eeba3b6c68401ee8199f75dacb242107406c7378 /services/std_svc/psci/psci_common.c | |
parent | e8246c07142cf18db3c7f37bd1fb84dc416746f3 (diff) |
Make use of user/system includes more consistent
Make codebase consistent in its use of #include "" syntax for
user includes and #include <> syntax for system includes.
Fixes ARM-software/tf-issues#65
Change-Id: If2f7c4885173b1fd05ac2cde5f1c8a07000c7a33
Diffstat (limited to 'services/std_svc/psci/psci_common.c')
-rw-r--r-- | services/std_svc/psci/psci_common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/services/std_svc/psci/psci_common.c b/services/std_svc/psci/psci_common.c index 8b49b778..fc10ab0c 100644 --- a/services/std_svc/psci/psci_common.c +++ b/services/std_svc/psci/psci_common.c @@ -35,10 +35,10 @@ #include <console.h> #include <platform.h> #include <psci.h> -#include <psci_private.h> #include <context_mgmt.h> #include <runtime_svc.h> -#include "debug.h" +#include <debug.h> +#include "psci_private.h" /* * SPD power management operations, expected to be supplied by the registered |