diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2009-12-01 08:15:38 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2009-12-01 08:15:38 +0000 |
commit | 702a5a57417cd75f29a6ba8c2203170272d987ff (patch) | |
tree | b07d9ff4d457360c1fce768b8d11848711855ff9 /src/cpu/intel | |
parent | 01dd9e1182fc76dc39feffad69bd2a388d13e776 (diff) | |
download | coreboot-702a5a57417cd75f29a6ba8c2203170272d987ff.tar.xz |
Atom only supports 32bit MTRRs (trivial)
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4970 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/cpu/intel')
-rw-r--r-- | src/cpu/intel/model_106cx/model_106cx_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/intel/model_106cx/model_106cx_init.c b/src/cpu/intel/model_106cx/model_106cx_init.c index 799d757799..0be838b009 100644 --- a/src/cpu/intel/model_106cx/model_106cx_init.c +++ b/src/cpu/intel/model_106cx/model_106cx_init.c @@ -181,7 +181,7 @@ static void model_106cx_init(device_t cpu) #endif /* Setup MTRRs */ - x86_setup_mtrrs(36); + x86_setup_mtrrs(32); x86_mtrr_check(); #if CONFIG_USBDEBUG_DIRECT |