diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-10-14 10:51:13 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-10-18 12:51:50 +0000 |
commit | 2c5652d72b82dcad7b8dda872391ebdb3664a567 (patch) | |
tree | f3d346672940466aa2e3a005c8f69493ee546757 /src/mainboard/amd/south_station | |
parent | 39db1447431bdd651ff17a1c36dee08d7d0b3710 (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/south_station')
-rw-r--r-- | src/mainboard/amd/south_station/mainboard.c | 3 | ||||
-rw-r--r-- | src/mainboard/amd/south_station/mptable.c | 4 |
2 files changed, 2 insertions, 5 deletions
diff --git a/src/mainboard/amd/south_station/mainboard.c b/src/mainboard/amd/south_station/mainboard.c index 1587d32faf..8932f7a7b7 100644 --- a/src/mainboard/amd/south_station/mainboard.c +++ b/src/mainboard/amd/south_station/mainboard.c @@ -16,9 +16,8 @@ #include <console/console.h> #include <delay.h> #include <device/device.h> - #include <southbridge/amd/sb800/sb800.h> -#include "SBPLATFORM.h" /* Platform Specific Definitions */ +#include <southbridge/amd/cimx/sb800/SBPLATFORM.h> /* Platform Specific Definitions */ /** * Southstation using SB GPIO 17/18 to control the Red/Green LED diff --git a/src/mainboard/amd/south_station/mptable.c b/src/mainboard/amd/south_station/mptable.c index 152b959eb2..93b68dd65a 100644 --- a/src/mainboard/amd/south_station/mptable.c +++ b/src/mainboard/amd/south_station/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> @@ -21,8 +20,7 @@ #include <arch/ioapic.h> #include <string.h> #include <stdint.h> -#include <SBPLATFORM.h> - +#include <southbridge/amd/cimx/sb800/SBPLATFORM.h> u8 intr_data[] = { [0x00] = 0x10,0x11,0x12,0x13,0x14,0x15,0x16,0x17, /* INTA# - INTH# */ |