summaryrefslogtreecommitdiff
path: root/src/southbridge/intel/common/pmbase.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/southbridge/intel/common/pmbase.c')
-rw-r--r--src/southbridge/intel/common/pmbase.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/southbridge/intel/common/pmbase.c b/src/southbridge/intel/common/pmbase.c
index 8b3274f524..563856c23e 100644
--- a/src/southbridge/intel/common/pmbase.c
+++ b/src/southbridge/intel/common/pmbase.c
@@ -18,7 +18,6 @@
#include <arch/io.h>
#include <device/device.h>
#include <device/pci.h>
-#include <arch/early_variables.h>
#include <assert.h>
#include <security/vboot/vboot_common.h>
@@ -42,7 +41,7 @@ u16 lpc_get_pmbase(void)
/* Don't assume PMBASE is still the same */
return pci_read_config16(PCH_LPC_DEV, PMBASE) & 0xfffc;
#else
- static u16 pmbase CAR_GLOBAL;
+ static u16 pmbase;
if (pmbase)
return pmbase;