diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2010-10-01 09:11:15 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2010-10-01 09:11:15 +0000 |
commit | c2d0bfb4705b4fe3eb9332df00f01903f55d3521 (patch) | |
tree | 3160cc27d8ead5d2f7c066b590c1920134fc32ae /src | |
parent | 77d6683edd1c0af74e4435cf432a558df3fe71eb (diff) | |
download | coreboot-c2d0bfb4705b4fe3eb9332df00f01903f55d3521.tar.xz |
Add missing parenthesis (trivial).
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5892 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src')
-rw-r--r-- | src/cpu/amd/car/cache_as_ram.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/amd/car/cache_as_ram.inc b/src/cpu/amd/car/cache_as_ram.inc index f43febe0d4..81c3481eee 100644 --- a/src/cpu/amd/car/cache_as_ram.inc +++ b/src/cpu/amd/car/cache_as_ram.inc @@ -139,7 +139,7 @@ CAR_FAM10_out: movl $MSR_MCFG_BASE, %ecx rdmsr andl $(~(0xfff00000 | (0xf << 2))), %eax - orl $((CONFIG_MMCONF_BASE_ADDRESS & 0xfff00000), %eax + orl $((CONFIG_MMCONF_BASE_ADDRESS & 0xfff00000)), %eax orl $((8 << 2) | (1 << 0)), %eax andl $(~(0x0000ffff)), %edx orl $(CONFIG_MMCONF_BASE_ADDRESS >> 32), %edx |