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/gizmosphere | |
parent | 54f942499b72efe301e7bee7b7d9daf6a1d8c8ea (diff) | |
download | coreboot-19f5ba81be265da3d1a2a15c106486677479dfd5.tar.gz |
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/gizmosphere')
-rw-r--r-- | src/mainboard/gizmosphere/gizmo/BiosCallOuts.c | 4 | ||||
-rw-r--r-- | src/mainboard/gizmosphere/gizmo/OemCustomize.c | 2 | ||||
-rw-r--r-- | src/mainboard/gizmosphere/gizmo/buildOpts.c | 2 | ||||
-rw-r--r-- | src/mainboard/gizmosphere/gizmo2/BiosCallOuts.c | 6 | ||||
-rw-r--r-- | src/mainboard/gizmosphere/gizmo2/OemCustomize.c | 2 | ||||
-rw-r--r-- | src/mainboard/gizmosphere/gizmo2/buildOpts.c | 2 |
6 files changed, 9 insertions, 9 deletions
diff --git a/src/mainboard/gizmosphere/gizmo/BiosCallOuts.c b/src/mainboard/gizmosphere/gizmo/BiosCallOuts.c index 1e867e4f01..5fc17185e4 100644 --- a/src/mainboard/gizmosphere/gizmo/BiosCallOuts.c +++ b/src/mainboard/gizmosphere/gizmo/BiosCallOuts.c @@ -13,9 +13,9 @@ * GNU General Public License for more details. */ -#include "AGESA.h" +#include <AGESA.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/gizmosphere/gizmo/OemCustomize.c b/src/mainboard/gizmosphere/gizmo/OemCustomize.c index e1850d241a..23426ca76f 100644 --- a/src/mainboard/gizmosphere/gizmo/OemCustomize.c +++ b/src/mainboard/gizmosphere/gizmo/OemCustomize.c @@ -14,7 +14,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/gizmosphere/gizmo/buildOpts.c b/src/mainboard/gizmosphere/gizmo/buildOpts.c index bf00a587b5..b9348080b9 100644 --- a/src/mainboard/gizmosphere/gizmo/buildOpts.c +++ b/src/mainboard/gizmosphere/gizmo/buildOpts.c @@ -203,7 +203,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/gizmosphere/gizmo2/BiosCallOuts.c b/src/mainboard/gizmosphere/gizmo2/BiosCallOuts.c index 512aea5c91..8efe2dfd0a 100644 --- a/src/mainboard/gizmosphere/gizmo2/BiosCallOuts.c +++ b/src/mainboard/gizmosphere/gizmo2/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/gizmosphere/gizmo2/OemCustomize.c b/src/mainboard/gizmosphere/gizmo2/OemCustomize.c index 8b957a0f34..b98b2ac846 100644 --- a/src/mainboard/gizmosphere/gizmo2/OemCustomize.c +++ b/src/mainboard/gizmosphere/gizmo2/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/gizmosphere/gizmo2/buildOpts.c b/src/mainboard/gizmosphere/gizmo2/buildOpts.c index 2631bbaef0..2f6143ed81 100644 --- a/src/mainboard/gizmosphere/gizmo2/buildOpts.c +++ b/src/mainboard/gizmosphere/gizmo2/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 |