aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/amd/torpedo
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2018-10-14 10:51:13 +0200
committerPatrick Georgi <pgeorgi@google.com>2018-10-18 12:51:50 +0000
commit2c5652d72b82dcad7b8dda872391ebdb3664a567 (patch)
treef3d346672940466aa2e3a005c8f69493ee546757 /src/mainboard/amd/torpedo
parent39db1447431bdd651ff17a1c36dee08d7d0b3710 (diff)
mb: Fix non-local header treated as local
Change-Id: Ib39305effdb00e032ca07e6d0e0d84cdf3dcf916 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/29098 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/mainboard/amd/torpedo')
-rw-r--r--src/mainboard/amd/torpedo/fadt.c3
-rw-r--r--src/mainboard/amd/torpedo/gpio.c4
-rw-r--r--src/mainboard/amd/torpedo/mptable.c3
3 files changed, 4 insertions, 6 deletions
diff --git a/src/mainboard/amd/torpedo/fadt.c b/src/mainboard/amd/torpedo/fadt.c
index 56a90a6ffb..4de149d82e 100644
--- a/src/mainboard/amd/torpedo/fadt.c
+++ b/src/mainboard/amd/torpedo/fadt.c
@@ -18,13 +18,12 @@
* ACPI - create the Fixed ACPI Description Tables (FADT)
*/
-
#include <string.h>
#include <console/console.h>
#include <arch/acpi.h>
#include <arch/io.h>
#include <device/device.h>
-#include "SbPlatform.h"
+#include <southbridge/amd/cimx/sb900/SbPlatform.h>
/*extern*/ u16 pm_base = 0x800;
/* pm_base should be set in sb ACPI */
diff --git a/src/mainboard/amd/torpedo/gpio.c b/src/mainboard/amd/torpedo/gpio.c
index e26052a734..7633cf36f3 100644
--- a/src/mainboard/amd/torpedo/gpio.c
+++ b/src/mainboard/amd/torpedo/gpio.c
@@ -13,9 +13,9 @@
* GNU General Public License for more details.
*/
-#include "SbPlatform.h"
+#include <southbridge/amd/cimx/sb900/SbPlatform.h>
#include "gpio.h"
-#include "vendorcode/amd/cimx/sb900/AmdSbLib.h"
+#include <vendorcode/amd/cimx/sb900/AmdSbLib.h>
#ifndef SB_GPIO_REG01
diff --git a/src/mainboard/amd/torpedo/mptable.c b/src/mainboard/amd/torpedo/mptable.c
index f06fb755e2..47ae625c30 100644
--- a/src/mainboard/amd/torpedo/mptable.c
+++ b/src/mainboard/amd/torpedo/mptable.c
@@ -13,7 +13,6 @@
* GNU General Public License for more details.
*/
-
#include <console/console.h>
#include <arch/smp/mpspec.h>
#include <device/pci.h>
@@ -22,7 +21,7 @@
#include <stdint.h>
#include <arch/cpu.h>
#include <cpu/x86/lapic.h>
-#include "SbPlatform.h"
+#include <southbridge/amd/cimx/sb900/SbPlatform.h>
#define IO_APIC_ID CONFIG_MAX_CPUS
u32 apicid_sb900;