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>
This commit is contained in:
parent
38f1d13a75
commit
660389ef9e
|
@ -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."
|
||||
|
|
Loading…
Reference in New Issue