aboutsummaryrefslogtreecommitdiff
path: root/drivers/io
diff options
context:
space:
mode:
authorDan Handley <dan.handley@arm.com>2014-04-09 13:13:04 +0100
committerDan Handley <dan.handley@arm.com>2014-05-06 12:35:02 +0100
commit35e98e5588d09145f7d0d4d98624f6b75321a187 (patch)
treeeeba3b6c68401ee8199f75dacb242107406c7378 /drivers/io
parente8246c07142cf18db3c7f37bd1fb84dc416746f3 (diff)
downloadtrusted-firmware-a-35e98e5588d09145f7d0d4d98624f6b75321a187.tar.gz
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 'drivers/io')
-rw-r--r--drivers/io/io_fip.c12
-rw-r--r--drivers/io/io_memmap.c6
-rw-r--r--drivers/io/io_semihosting.c6
3 files changed, 12 insertions, 12 deletions
diff --git a/drivers/io/io_fip.c b/drivers/io/io_fip.c
index 1eb76faaa5..3a5d2204e9 100644
--- a/drivers/io/io_fip.c
+++ b/drivers/io/io_fip.c
@@ -33,12 +33,12 @@
#include <errno.h>
#include <string.h>
#include <assert.h>
-#include "platform.h"
-#include "firmware_image_package.h"
-#include "io_storage.h"
-#include "io_driver.h"
-#include "io_fip.h"
-#include "debug.h"
+#include <platform.h>
+#include <firmware_image_package.h>
+#include <io_storage.h>
+#include <io_driver.h>
+#include <io_fip.h>
+#include <debug.h>
/* Useful for printing UUIDs when debugging.*/
#define PRINT_UUID2(x) \
diff --git a/drivers/io/io_memmap.c b/drivers/io/io_memmap.c
index 40b8e9abca..5685be19ed 100644
--- a/drivers/io/io_memmap.c
+++ b/drivers/io/io_memmap.c
@@ -30,9 +30,9 @@
#include <assert.h>
#include <string.h>
-#include "io_storage.h"
-#include "io_driver.h"
-#include "debug.h"
+#include <io_storage.h>
+#include <io_driver.h>
+#include <debug.h>
/* As we need to be able to keep state for seek, only one file can be open
* at a time. Make this a structure and point to the entity->info. When we
diff --git a/drivers/io/io_semihosting.c b/drivers/io/io_semihosting.c
index 14ec687c66..c8013bc8b4 100644
--- a/drivers/io/io_semihosting.c
+++ b/drivers/io/io_semihosting.c
@@ -29,9 +29,9 @@
*/
#include <assert.h>
-#include "io_storage.h"
-#include "io_driver.h"
-#include "semihosting.h"
+#include <io_storage.h>
+#include <io_driver.h>
+#include <semihosting.h>