diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-10-14 20:34:09 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-10-18 16:22:12 +0000 |
commit | 660389ef9e10dbe2735820baaf035c14fef6fafc (patch) | |
tree | 18827a7825cb1b29e4fa51c012e6db5e335552e4 /src/cpu | |
parent | 38f1d13a755548ee8afaf9b5e19d8b6709b9e55d (diff) | |
download | coreboot-660389ef9e10dbe2735820baaf035c14fef6fafc.tar.xz |
cpu/x86/smm: Fix non-local header treated as local
Change-Id: I15dfe0332fd87db61d692a94bf1fd5d00dfb83d4
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/29105
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/cpu')
-rw-r--r-- | src/cpu/x86/smm/smmrelocate.S | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cpu/x86/smm/smmrelocate.S b/src/cpu/x86/smm/smmrelocate.S index 56e73cdc32..16bccbce45 100644 --- a/src/cpu/x86/smm/smmrelocate.S +++ b/src/cpu/x86/smm/smmrelocate.S @@ -22,13 +22,13 @@ // It's needed right now because we get our DEFAULT_PMBASE from // here. #if IS_ENABLED(CONFIG_SOUTHBRIDGE_INTEL_I82801GX) -#include "../../../southbridge/intel/i82801gx/i82801gx.h" +#include <southbridge/intel/i82801gx/i82801gx.h> #elif IS_ENABLED(CONFIG_SOUTHBRIDGE_INTEL_I82801DX) -#include "../../../southbridge/intel/i82801dx/i82801dx.h" +#include <southbridge/intel/i82801dx/i82801dx.h> #elif IS_ENABLED(CONFIG_SOUTHBRIDGE_INTEL_I82801IX) -#include "../../../southbridge/intel/i82801ix/i82801ix.h" +#include <southbridge/intel/i82801ix/i82801ix.h> #elif IS_ENABLED(CONFIG_SOUTHBRIDGE_INTEL_I82801JX) -#include "../../../southbridge/intel/i82801jx/i82801jx.h" +#include <southbridge/intel/i82801jx/i82801jx.h> #else #error "Southbridge needs SMM handler support." |