aboutsummaryrefslogtreecommitdiff
path: root/src/drivers/amd
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2018-10-14 14:52:06 +0200
committerPatrick Georgi <pgeorgi@google.com>2018-11-05 09:00:26 +0000
commit19f5ba81be265da3d1a2a15c106486677479dfd5 (patch)
treeef03b65c6223c85d81934953cf6780876f663123 /src/drivers/amd
parent54f942499b72efe301e7bee7b7d9daf6a1d8c8ea (diff)
amd: Fix non-local header treated as local
Change-Id: I0668b73cd3a5bf5220af55c29785220b77eb5259 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/29103 Reviewed-by: Patrick Georgi <pgeorgi@google.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/drivers/amd')
-rw-r--r--src/drivers/amd/agesa/acpi_tables.c2
-rw-r--r--src/drivers/amd/agesa/def_callouts.c4
-rw-r--r--src/drivers/amd/agesa/eventlog.c6
-rw-r--r--src/drivers/amd/agesa/heapmanager.c4
-rw-r--r--src/drivers/amd/agesa/state_machine.c4
5 files changed, 10 insertions, 10 deletions
diff --git a/src/drivers/amd/agesa/acpi_tables.c b/src/drivers/amd/agesa/acpi_tables.c
index 2f0cde874c..391345d4fe 100644
--- a/src/drivers/amd/agesa/acpi_tables.c
+++ b/src/drivers/amd/agesa/acpi_tables.c
@@ -17,7 +17,7 @@
#include <northbridge/amd/agesa/state_machine.h>
#include <northbridge/amd/agesa/agesa_helper.h>
-#include "AGESA.h"
+#include <AGESA.h>
/* Fields were removed from the structure and we cannot add them back
* without new builds of the binaryPI blobs.
diff --git a/src/drivers/amd/agesa/def_callouts.c b/src/drivers/amd/agesa/def_callouts.c
index 3ef715f83d..fe5101fc91 100644
--- a/src/drivers/amd/agesa/def_callouts.c
+++ b/src/drivers/amd/agesa/def_callouts.c
@@ -18,8 +18,8 @@
#include <spd_bin.h>
#include <string.h>
-#include "AGESA.h"
-#include "amdlib.h"
+#include <AGESA.h>
+#include <amdlib.h>
#include "Ids.h"
#include <northbridge/amd/agesa/state_machine.h>
#include <northbridge/amd/agesa/BiosCallOuts.h>
diff --git a/src/drivers/amd/agesa/eventlog.c b/src/drivers/amd/agesa/eventlog.c
index f6f6383c59..cc65652033 100644
--- a/src/drivers/amd/agesa/eventlog.c
+++ b/src/drivers/amd/agesa/eventlog.c
@@ -17,9 +17,9 @@
#include <northbridge/amd/agesa/state_machine.h>
#include <northbridge/amd/agesa/BiosCallOuts.h>
-#include "amdlib.h"
-#include "AGESA.h"
-#include "AMD.h"
+#include <amdlib.h>
+#include <AGESA.h>
+#include <AMD.h>
#include <heapManager.h>
diff --git a/src/drivers/amd/agesa/heapmanager.c b/src/drivers/amd/agesa/heapmanager.c
index 07ac315ab7..2a76b69e59 100644
--- a/src/drivers/amd/agesa/heapmanager.c
+++ b/src/drivers/amd/agesa/heapmanager.c
@@ -12,8 +12,8 @@
*/
-#include "AGESA.h"
-#include "amdlib.h"
+#include <AGESA.h>
+#include <amdlib.h>
#include <cbmem.h>
#include <northbridge/amd/agesa/agesa_helper.h>
diff --git a/src/drivers/amd/agesa/state_machine.c b/src/drivers/amd/agesa/state_machine.c
index e1fdd42b38..696b5a4ebe 100644
--- a/src/drivers/amd/agesa/state_machine.c
+++ b/src/drivers/amd/agesa/state_machine.c
@@ -25,9 +25,9 @@
#include <northbridge/amd/agesa/state_machine.h>
#include <northbridge/amd/agesa/agesa_helper.h>
#include <northbridge/amd/agesa/BiosCallOuts.h>
-#include "amdlib.h"
+#include <amdlib.h>
-#include "AMD.h"
+#include <AMD.h>
#if IS_ENABLED(CONFIG_CPU_AMD_AGESA_OPENSOURCE)
#include "Dispatcher.h"