diff options
Diffstat (limited to 'src/cpu')
-rw-r--r-- | src/cpu/i386/reset16.inc | 2 | ||||
-rw-r--r-- | src/cpu/k8/earlymtrr.inc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/i386/reset16.inc b/src/cpu/i386/reset16.inc index 7c911d9ff2..190b75a32d 100644 --- a/src/cpu/i386/reset16.inc +++ b/src/cpu/i386/reset16.inc @@ -13,7 +13,7 @@ EXT(reset_vector): * other assemblers to tell it where the segment registers * are pointing in memory right now. */ - jmp EXT(_start_offset) + jmp EXT(_start) #elif (_ROMBASE < 0x100000) ljmp $((_ROMBASE & 0xf0000)>>4),$EXT(_start_offset); #else diff --git a/src/cpu/k8/earlymtrr.inc b/src/cpu/k8/earlymtrr.inc index 903405bdfb..d14afb1a31 100644 --- a/src/cpu/k8/earlymtrr.inc +++ b/src/cpu/k8/earlymtrr.inc @@ -46,7 +46,7 @@ set_var_mtrr: wrmsr #if defined(XIP_ROM_SIZE) && defined(XIP_ROM_BASE) - /* enable write back cachine so we can do execute in place + /* enable write base caching so we can do execute in place * on the flash rom. */ movl $0x202, %ecx |