diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-10-14 14:52:06 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-11-05 09:00:26 +0000 |
commit | 19f5ba81be265da3d1a2a15c106486677479dfd5 (patch) | |
tree | ef03b65c6223c85d81934953cf6780876f663123 /src/mainboard/amd | |
parent | 54f942499b72efe301e7bee7b7d9daf6a1d8c8ea (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/mainboard/amd')
24 files changed, 47 insertions, 47 deletions
diff --git a/src/mainboard/amd/bettong/BiosCallOuts.c b/src/mainboard/amd/bettong/BiosCallOuts.c index 58d36ae629..1ddcb1c123 100644 --- a/src/mainboard/amd/bettong/BiosCallOuts.c +++ b/src/mainboard/amd/bettong/BiosCallOuts.c @@ -15,11 +15,11 @@ #include <device/pci_def.h> #include <device/device.h> -#include "AGESA.h" +#include <AGESA.h> #include <northbridge/amd/agesa/BiosCallOuts.h> #include <northbridge/amd/pi/00660F01/chip.h> -#include "FchPlatform.h" -#include "cbfs.h" +#include <FchPlatform.h> +#include <cbfs.h> #include "imc.h" #include "hudson.h" #include <stdlib.h> diff --git a/src/mainboard/amd/db-ft3b-lc/BiosCallOuts.c b/src/mainboard/amd/db-ft3b-lc/BiosCallOuts.c index a273741eca..318d4a93c6 100644 --- a/src/mainboard/amd/db-ft3b-lc/BiosCallOuts.c +++ b/src/mainboard/amd/db-ft3b-lc/BiosCallOuts.c @@ -14,11 +14,11 @@ * GNU General Public License for more details. */ -#include "AGESA.h" +#include <AGESA.h> #include <northbridge/amd/agesa/BiosCallOuts.h> #include <device/azalia.h> -#include "FchPlatform.h" -#include "cbfs.h" +#include <FchPlatform.h> +#include <cbfs.h> #include "imc.h" #include "hudson.h" #include <stdlib.h> diff --git a/src/mainboard/amd/inagua/BiosCallOuts.c b/src/mainboard/amd/inagua/BiosCallOuts.c index 93e4277d45..c995cff5c8 100644 --- a/src/mainboard/amd/inagua/BiosCallOuts.c +++ b/src/mainboard/amd/inagua/BiosCallOuts.c @@ -13,10 +13,10 @@ * GNU General Public License for more details. */ -#include "AGESA.h" -#include "amdlib.h" +#include <AGESA.h> +#include <amdlib.h> #include <northbridge/amd/agesa/BiosCallOuts.h> -#include "SB800.h" +#include <SB800.h> #include <southbridge/amd/cimx/sb800/gpio_oem.h> #include <stdlib.h> diff --git a/src/mainboard/amd/inagua/buildOpts.c b/src/mainboard/amd/inagua/buildOpts.c index 1727e15cf9..fe6fac03cb 100644 --- a/src/mainboard/amd/inagua/buildOpts.c +++ b/src/mainboard/amd/inagua/buildOpts.c @@ -201,7 +201,7 @@ * Uncomment and specify the value for the configuration options * needed by the system. */ -#include "AGESA.h" +#include <AGESA.h> /* The fixed MTRR values to be set after memory initialization. */ CONST AP_MTRR_SETTINGS ROMDATA OntarioApMtrrSettingsList[] = diff --git a/src/mainboard/amd/lamar/BiosCallOuts.c b/src/mainboard/amd/lamar/BiosCallOuts.c index da6d9ac1af..89d66a5010 100644 --- a/src/mainboard/amd/lamar/BiosCallOuts.c +++ b/src/mainboard/amd/lamar/BiosCallOuts.c @@ -13,10 +13,10 @@ * GNU General Public License for more details. */ -#include "AGESA.h" +#include <AGESA.h> #include <northbridge/amd/agesa/BiosCallOuts.h> -#include "FchPlatform.h" -#include "cbfs.h" +#include <FchPlatform.h> +#include <cbfs.h> #include "imc.h" #include "hudson.h" #include <stdlib.h> diff --git a/src/mainboard/amd/olivehill/BiosCallOuts.c b/src/mainboard/amd/olivehill/BiosCallOuts.c index 6f8baa945f..215309b3c5 100644 --- a/src/mainboard/amd/olivehill/BiosCallOuts.c +++ b/src/mainboard/amd/olivehill/BiosCallOuts.c @@ -13,11 +13,11 @@ * GNU General Public License for more details. */ -#include "AGESA.h" +#include <AGESA.h> #include <northbridge/amd/agesa/BiosCallOuts.h> #include <northbridge/amd/agesa/state_machine.h> -#include "FchPlatform.h" -#include "cbfs.h" +#include <FchPlatform.h> +#include <cbfs.h> #include "imc.h" #include <stdlib.h> diff --git a/src/mainboard/amd/olivehill/OemCustomize.c b/src/mainboard/amd/olivehill/OemCustomize.c index 9ed7cee723..45dca01829 100644 --- a/src/mainboard/amd/olivehill/OemCustomize.c +++ b/src/mainboard/amd/olivehill/OemCustomize.c @@ -13,7 +13,7 @@ * GNU General Public License for more details. */ -#include "AGESA.h" +#include <AGESA.h> #include <PlatformMemoryConfiguration.h> #include <northbridge/amd/agesa/state_machine.h> diff --git a/src/mainboard/amd/olivehill/buildOpts.c b/src/mainboard/amd/olivehill/buildOpts.c index 171aa48d01..65b86b88f7 100644 --- a/src/mainboard/amd/olivehill/buildOpts.c +++ b/src/mainboard/amd/olivehill/buildOpts.c @@ -26,7 +26,7 @@ */ #include <stdlib.h> -#include "AGESA.h" +#include <AGESA.h> #define INSTALL_FT3_SOCKET_SUPPORT TRUE #define INSTALL_FAMILY_16_MODEL_0x_SUPPORT TRUE diff --git a/src/mainboard/amd/olivehillplus/BiosCallOuts.c b/src/mainboard/amd/olivehillplus/BiosCallOuts.c index c5e51cddfd..3eea990349 100644 --- a/src/mainboard/amd/olivehillplus/BiosCallOuts.c +++ b/src/mainboard/amd/olivehillplus/BiosCallOuts.c @@ -13,10 +13,10 @@ * GNU General Public License for more details. */ -#include "AGESA.h" +#include <AGESA.h> #include <northbridge/amd/agesa/BiosCallOuts.h> -#include "FchPlatform.h" -#include "cbfs.h" +#include <FchPlatform.h> +#include <cbfs.h> #include "imc.h" #include "hudson.h" #include <stdlib.h> diff --git a/src/mainboard/amd/parmer/BiosCallOuts.c b/src/mainboard/amd/parmer/BiosCallOuts.c index a90085953e..95b8e41840 100644 --- a/src/mainboard/amd/parmer/BiosCallOuts.c +++ b/src/mainboard/amd/parmer/BiosCallOuts.c @@ -13,11 +13,11 @@ * GNU General Public License for more details. */ -#include "AGESA.h" +#include <AGESA.h> #include <northbridge/amd/agesa/BiosCallOuts.h> #include <northbridge/amd/agesa/state_machine.h> -#include "FchPlatform.h" -#include "cbfs.h" +#include <FchPlatform.h> +#include <cbfs.h> #include "imc.h" #include <stdlib.h> diff --git a/src/mainboard/amd/parmer/OemCustomize.c b/src/mainboard/amd/parmer/OemCustomize.c index 0a0fe7545e..8375073b06 100644 --- a/src/mainboard/amd/parmer/OemCustomize.c +++ b/src/mainboard/amd/parmer/OemCustomize.c @@ -13,7 +13,7 @@ * GNU General Public License for more details. */ -#include "AGESA.h" +#include <AGESA.h> #include <PlatformMemoryConfiguration.h> #include <northbridge/amd/agesa/state_machine.h> diff --git a/src/mainboard/amd/parmer/buildOpts.c b/src/mainboard/amd/parmer/buildOpts.c index c55cf2cb3b..7edc330c80 100644 --- a/src/mainboard/amd/parmer/buildOpts.c +++ b/src/mainboard/amd/parmer/buildOpts.c @@ -26,7 +26,7 @@ */ #include <stdlib.h> -#include "AGESA.h" +#include <AGESA.h> /* Select the CPU family. */ #define INSTALL_FAMILY_10_SUPPORT FALSE diff --git a/src/mainboard/amd/persimmon/BiosCallOuts.c b/src/mainboard/amd/persimmon/BiosCallOuts.c index 15cd1dfa2c..60ce3ee3a5 100644 --- a/src/mainboard/amd/persimmon/BiosCallOuts.c +++ b/src/mainboard/amd/persimmon/BiosCallOuts.c @@ -13,10 +13,10 @@ * GNU General Public License for more details. */ -#include "AGESA.h" -#include "amdlib.h" +#include <AGESA.h> +#include <amdlib.h> #include <northbridge/amd/agesa/BiosCallOuts.h> -#include "SB800.h" +#include <SB800.h> #include <stdlib.h> static AGESA_STATUS board_BeforeDramInit (UINT32 Func, UINTN Data, VOID *ConfigPtr); diff --git a/src/mainboard/amd/persimmon/buildOpts.c b/src/mainboard/amd/persimmon/buildOpts.c index bdd8f5d4fd..d99cc8107c 100644 --- a/src/mainboard/amd/persimmon/buildOpts.c +++ b/src/mainboard/amd/persimmon/buildOpts.c @@ -201,7 +201,7 @@ * Uncomment and specify the value for the configuration options * needed by the system. */ -#include "AGESA.h" +#include <AGESA.h> /* The fixed MTRR values to be set after memory initialization. */ CONST AP_MTRR_SETTINGS ROMDATA OntarioApMtrrSettingsList[] = diff --git a/src/mainboard/amd/south_station/BiosCallOuts.c b/src/mainboard/amd/south_station/BiosCallOuts.c index 5b5e034d10..ecb7e1cfd6 100644 --- a/src/mainboard/amd/south_station/BiosCallOuts.c +++ b/src/mainboard/amd/south_station/BiosCallOuts.c @@ -13,10 +13,10 @@ * GNU General Public License for more details. */ -#include "AGESA.h" -#include "amdlib.h" +#include <AGESA.h> +#include <amdlib.h> #include <northbridge/amd/agesa/BiosCallOuts.h> -#include "SB800.h" +#include <SB800.h> #include <southbridge/amd/cimx/sb800/gpio_oem.h> #include <stdlib.h> diff --git a/src/mainboard/amd/south_station/buildOpts.c b/src/mainboard/amd/south_station/buildOpts.c index 68236b6095..244229d30d 100644 --- a/src/mainboard/amd/south_station/buildOpts.c +++ b/src/mainboard/amd/south_station/buildOpts.c @@ -201,7 +201,7 @@ * Uncomment and specify the value for the configuration options * needed by the system. */ -#include "AGESA.h" +#include <AGESA.h> /* The fixed MTRR values to be set after memory initialization. */ CONST AP_MTRR_SETTINGS ROMDATA OntarioApMtrrSettingsList[] = diff --git a/src/mainboard/amd/thatcher/BiosCallOuts.c b/src/mainboard/amd/thatcher/BiosCallOuts.c index 2cbfbdfefc..4fc97d0e3a 100644 --- a/src/mainboard/amd/thatcher/BiosCallOuts.c +++ b/src/mainboard/amd/thatcher/BiosCallOuts.c @@ -13,11 +13,11 @@ * GNU General Public License for more details. */ -#include "AGESA.h" +#include <AGESA.h> #include <northbridge/amd/agesa/BiosCallOuts.h> #include <northbridge/amd/agesa/state_machine.h> -#include "FchPlatform.h" -#include "cbfs.h" +#include <FchPlatform.h> +#include <cbfs.h> #include "imc.h" #include <stdlib.h> diff --git a/src/mainboard/amd/thatcher/OemCustomize.c b/src/mainboard/amd/thatcher/OemCustomize.c index a6c98b9026..be09a25c8d 100644 --- a/src/mainboard/amd/thatcher/OemCustomize.c +++ b/src/mainboard/amd/thatcher/OemCustomize.c @@ -13,7 +13,7 @@ * GNU General Public License for more details. */ -#include "AGESA.h" +#include <AGESA.h> #include <PlatformMemoryConfiguration.h> #include <northbridge/amd/agesa/state_machine.h> diff --git a/src/mainboard/amd/thatcher/buildOpts.c b/src/mainboard/amd/thatcher/buildOpts.c index 4b7bb698a2..9e383b4817 100644 --- a/src/mainboard/amd/thatcher/buildOpts.c +++ b/src/mainboard/amd/thatcher/buildOpts.c @@ -26,7 +26,7 @@ */ #include <stdlib.h> -#include "AGESA.h" +#include <AGESA.h> /* Select the CPU family. */ #define INSTALL_FAMILY_10_SUPPORT FALSE diff --git a/src/mainboard/amd/torpedo/BiosCallOuts.c b/src/mainboard/amd/torpedo/BiosCallOuts.c index 7bdf71d9cf..56c48c8a8d 100644 --- a/src/mainboard/amd/torpedo/BiosCallOuts.c +++ b/src/mainboard/amd/torpedo/BiosCallOuts.c @@ -13,8 +13,8 @@ * GNU General Public License for more details. */ -#include "AGESA.h" -#include "amdlib.h" +#include <AGESA.h> +#include <amdlib.h> #include <northbridge/amd/agesa/BiosCallOuts.h> #include "Hudson-2.h" #include <stdlib.h> diff --git a/src/mainboard/amd/torpedo/buildOpts.c b/src/mainboard/amd/torpedo/buildOpts.c index 4b6bfb0481..fbeee9aedd 100644 --- a/src/mainboard/amd/torpedo/buildOpts.c +++ b/src/mainboard/amd/torpedo/buildOpts.c @@ -26,7 +26,7 @@ */ #include <stdlib.h> -#include "AGESA.h" +#include <AGESA.h> /* Select the CPU family. */ diff --git a/src/mainboard/amd/union_station/BiosCallOuts.c b/src/mainboard/amd/union_station/BiosCallOuts.c index 5b5e034d10..ecb7e1cfd6 100644 --- a/src/mainboard/amd/union_station/BiosCallOuts.c +++ b/src/mainboard/amd/union_station/BiosCallOuts.c @@ -13,10 +13,10 @@ * GNU General Public License for more details. */ -#include "AGESA.h" -#include "amdlib.h" +#include <AGESA.h> +#include <amdlib.h> #include <northbridge/amd/agesa/BiosCallOuts.h> -#include "SB800.h" +#include <SB800.h> #include <southbridge/amd/cimx/sb800/gpio_oem.h> #include <stdlib.h> diff --git a/src/mainboard/amd/union_station/OemCustomize.c b/src/mainboard/amd/union_station/OemCustomize.c index 2c2be51571..8a629011ba 100644 --- a/src/mainboard/amd/union_station/OemCustomize.c +++ b/src/mainboard/amd/union_station/OemCustomize.c @@ -13,7 +13,7 @@ * GNU General Public License for more details. */ -#include "AGESA.h" +#include <AGESA.h> #include <PlatformMemoryConfiguration.h> #include <string.h> diff --git a/src/mainboard/amd/union_station/buildOpts.c b/src/mainboard/amd/union_station/buildOpts.c index 68236b6095..244229d30d 100644 --- a/src/mainboard/amd/union_station/buildOpts.c +++ b/src/mainboard/amd/union_station/buildOpts.c @@ -201,7 +201,7 @@ * Uncomment and specify the value for the configuration options * needed by the system. */ -#include "AGESA.h" +#include <AGESA.h> /* The fixed MTRR values to be set after memory initialization. */ CONST AP_MTRR_SETTINGS ROMDATA OntarioApMtrrSettingsList[] = |