diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2017-09-23 16:21:02 +0300 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2017-09-26 09:58:29 +0000 |
commit | 525930bdf448b20f3b725d1ae0fd4045654b1fa6 (patch) | |
tree | c08543227a2c45bb40da561cd07ad110af478452 | |
parent | d41feed800ca094ec8ac5f793b7ec2f345859b1c (diff) | |
download | coreboot-525930bdf448b20f3b725d1ae0fd4045654b1fa6.tar.xz |
binaryPI boards: Fix indirect AGESA.h include
Change-Id: I3f6030879da61168adf42db0a4913d70a737594e
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/21649
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
-rw-r--r-- | src/mainboard/amd/bettong/OemCustomize.c | 1 | ||||
-rw-r--r-- | src/mainboard/amd/gardenia/OemCustomize.c | 1 | ||||
-rw-r--r-- | src/mainboard/amd/gardenia/bootblock/OemCustomize.c | 1 | ||||
-rw-r--r-- | src/mainboard/amd/lamar/OemCustomize.c | 1 | ||||
-rw-r--r-- | src/mainboard/amd/olivehillplus/OemCustomize.c | 1 | ||||
-rw-r--r-- | src/mainboard/bap/ode_e21XX/OemCustomize.c | 1 | ||||
-rw-r--r-- | src/mainboard/google/kahlee/OemCustomize.c | 1 | ||||
-rw-r--r-- | src/mainboard/google/kahlee/bootblock/OemCustomize.c | 1 | ||||
-rw-r--r-- | src/mainboard/pcengines/apu2/OemCustomize.c | 1 |
9 files changed, 9 insertions, 0 deletions
diff --git a/src/mainboard/amd/bettong/OemCustomize.c b/src/mainboard/amd/bettong/OemCustomize.c index 740c200f6c..4843b2ade3 100644 --- a/src/mainboard/amd/bettong/OemCustomize.c +++ b/src/mainboard/amd/bettong/OemCustomize.c @@ -13,6 +13,7 @@ * GNU General Public License for more details. */ +#include <AGESA.h> #include <northbridge/amd/pi/agesawrapper.h> #include <PlatformMemoryConfiguration.h> #include <boardid.h> diff --git a/src/mainboard/amd/gardenia/OemCustomize.c b/src/mainboard/amd/gardenia/OemCustomize.c index 6ca84b4b86..8bd8e7c041 100644 --- a/src/mainboard/amd/gardenia/OemCustomize.c +++ b/src/mainboard/amd/gardenia/OemCustomize.c @@ -13,6 +13,7 @@ * GNU General Public License for more details. */ +#include <AGESA.h> #include <agesawrapper.h> #include <PlatformMemoryConfiguration.h> diff --git a/src/mainboard/amd/gardenia/bootblock/OemCustomize.c b/src/mainboard/amd/gardenia/bootblock/OemCustomize.c index 5c16c39d6b..52148fdf0e 100644 --- a/src/mainboard/amd/gardenia/bootblock/OemCustomize.c +++ b/src/mainboard/amd/gardenia/bootblock/OemCustomize.c @@ -13,6 +13,7 @@ * GNU General Public License for more details. */ +#include <AGESA.h> #include <agesawrapper.h> #include <PlatformMemoryConfiguration.h> diff --git a/src/mainboard/amd/lamar/OemCustomize.c b/src/mainboard/amd/lamar/OemCustomize.c index 09d84408fd..8cb777625c 100644 --- a/src/mainboard/amd/lamar/OemCustomize.c +++ b/src/mainboard/amd/lamar/OemCustomize.c @@ -14,6 +14,7 @@ * GNU General Public License for more details. */ +#include <AGESA.h> #include <northbridge/amd/pi/agesawrapper.h> diff --git a/src/mainboard/amd/olivehillplus/OemCustomize.c b/src/mainboard/amd/olivehillplus/OemCustomize.c index 2f2f142bc5..b66a88b7f9 100644 --- a/src/mainboard/amd/olivehillplus/OemCustomize.c +++ b/src/mainboard/amd/olivehillplus/OemCustomize.c @@ -13,6 +13,7 @@ * GNU General Public License for more details. */ +#include <AGESA.h> #include <northbridge/amd/pi/agesawrapper.h> diff --git a/src/mainboard/bap/ode_e21XX/OemCustomize.c b/src/mainboard/bap/ode_e21XX/OemCustomize.c index 696a9b59eb..008e5da4f4 100644 --- a/src/mainboard/bap/ode_e21XX/OemCustomize.c +++ b/src/mainboard/bap/ode_e21XX/OemCustomize.c @@ -13,6 +13,7 @@ * GNU General Public License for more details. */ +#include <AGESA.h> #include <northbridge/amd/pi/agesawrapper.h> diff --git a/src/mainboard/google/kahlee/OemCustomize.c b/src/mainboard/google/kahlee/OemCustomize.c index 2b3f551517..528c7b3b4b 100644 --- a/src/mainboard/google/kahlee/OemCustomize.c +++ b/src/mainboard/google/kahlee/OemCustomize.c @@ -13,6 +13,7 @@ * GNU General Public License for more details. */ +#include <AGESA.h> #include <agesawrapper.h> #include <PlatformMemoryConfiguration.h> diff --git a/src/mainboard/google/kahlee/bootblock/OemCustomize.c b/src/mainboard/google/kahlee/bootblock/OemCustomize.c index 6fb2d26c38..38d08e553f 100644 --- a/src/mainboard/google/kahlee/bootblock/OemCustomize.c +++ b/src/mainboard/google/kahlee/bootblock/OemCustomize.c @@ -13,6 +13,7 @@ * GNU General Public License for more details. */ +#include <AGESA.h> #include <agesawrapper.h> #include <PlatformMemoryConfiguration.h> diff --git a/src/mainboard/pcengines/apu2/OemCustomize.c b/src/mainboard/pcengines/apu2/OemCustomize.c index 797b75f8be..a729860616 100644 --- a/src/mainboard/pcengines/apu2/OemCustomize.c +++ b/src/mainboard/pcengines/apu2/OemCustomize.c @@ -13,6 +13,7 @@ * GNU General Public License for more details. */ +#include <AGESA.h> #include <northbridge/amd/pi/agesawrapper.h> |