diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-07-03 14:59:50 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-08-13 15:38:38 +0000 |
commit | 65bb5434f6eb9e1f0f72a52958193b38057cfad7 (patch) | |
tree | 03700327ee52e7dc06fda83b5d193eca0cac7611 /src/southbridge | |
parent | 870f69e2214d98a29e623a48953f305326e5870a (diff) | |
download | coreboot-65bb5434f6eb9e1f0f72a52958193b38057cfad7.tar.xz |
src: Get rid of non-local header treated as local
Change-Id: I2c5edadfd035c9af08af9ee326a5a2dc8b840faa
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/27331
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/southbridge')
-rw-r--r-- | src/southbridge/intel/fsp_rangeley/romstage.c | 2 | ||||
-rw-r--r-- | src/southbridge/intel/lynxpoint/early_pch.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/southbridge/intel/fsp_rangeley/romstage.c b/src/southbridge/intel/fsp_rangeley/romstage.c index 74df69112c..2f598d88d5 100644 --- a/src/southbridge/intel/fsp_rangeley/romstage.c +++ b/src/southbridge/intel/fsp_rangeley/romstage.c @@ -27,7 +27,7 @@ #include <console/console.h> #include <drivers/intel/fsp1_0/fsp_util.h> #include <program_loading.h> -#include "northbridge/intel/fsp_rangeley/northbridge.h" +#include <northbridge/intel/fsp_rangeley/northbridge.h> #include "southbridge/intel/fsp_rangeley/soc.h" #include "southbridge/intel/fsp_rangeley/gpio.h" #include "southbridge/intel/fsp_rangeley/romstage.h" diff --git a/src/southbridge/intel/lynxpoint/early_pch.c b/src/southbridge/intel/lynxpoint/early_pch.c index cb4bc7efb6..4c45613487 100644 --- a/src/southbridge/intel/lynxpoint/early_pch.c +++ b/src/southbridge/intel/lynxpoint/early_pch.c @@ -27,7 +27,7 @@ #if IS_ENABLED(CONFIG_INTEL_LYNXPOINT_LP) #include "lp_gpio.h" #else -#include "southbridge/intel/common/gpio.h" +#include <southbridge/intel/common/gpio.h> #endif const struct rcba_config_instruction pch_early_config[] = { |