Commit 35e98e55 authored by Dan Handley's avatar Dan Handley
Browse files

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
parent e8246c07
......@@ -36,7 +36,7 @@
#include <console.h>
#include <platform.h>
#include <psci.h>
#include <psci_private.h>
#include "psci_private.h"
typedef int (*afflvl_off_handler)(unsigned long, aff_map_node *);
......
......@@ -36,8 +36,8 @@
#include <console.h>
#include <platform.h>
#include <psci.h>
#include <psci_private.h>
#include <context_mgmt.h>
#include "psci_private.h"
typedef int (*afflvl_on_handler)(unsigned long,
aff_map_node *,
......
......@@ -36,8 +36,8 @@
#include <console.h>
#include <platform.h>
#include <psci.h>
#include <psci_private.h>
#include <context_mgmt.h>
#include "psci_private.h"
typedef int (*afflvl_suspend_handler)(unsigned long,
aff_map_node *,
......
......@@ -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
......
......@@ -31,10 +31,10 @@
#include <arch.h>
#include <platform.h>
#include <psci.h>
#include <psci_private.h>
#include <runtime_svc.h>
#include <asm_macros.S>
#include <cm_macros.S>
#include "psci_private.h"
.globl psci_aff_on_finish_entry
.globl psci_aff_suspend_finish_entry
......
......@@ -34,10 +34,10 @@
#include <arch_helpers.h>
#include <console.h>
#include <platform.h>
#include <psci_private.h>
#include <runtime_svc.h>
#include <debug.h>
#include <context_mgmt.h>
#include "psci_private.h"
/*******************************************************************************
* PSCI frontend api for servicing SMCs. Described in the PSCI spec.
......
......@@ -34,9 +34,9 @@
#include <arch_helpers.h>
#include <console.h>
#include <platform.h>
#include <psci_private.h>
#include <context_mgmt.h>
#include <runtime_svc.h>
#include "psci_private.h"
/*******************************************************************************
* Per cpu non-secure contexts used to program the architectural state prior
......
......@@ -34,8 +34,8 @@
#include <runtime_svc.h>
#include <std_svc.h>
#include <psci.h>
#include <psci_private.h>
#include <debug.h>
#include "psci/psci_private.h"
/* Standard Service UUID */
DEFINE_SVC_UUID(arm_svc_uid,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment