summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2015-10-18 21:55:35 (GMT)
committerSimon Glass <sjg@chromium.org>2015-10-21 13:46:51 (GMT)
commite9b3967c0c8faefb46213d6698c4bc21bf91598a (patch)
treed1020d40525ec52b354222ee1c3154c1e4caa86d /arch
parent9fbc5ccd79d1c6faacd2027ca89e54f38f365e2e (diff)
downloadu-boot-e9b3967c0c8faefb46213d6698c4bc21bf91598a.tar.xz
x86: ivybridge: Fix car_uninit() to correctly set run state
At present a missing $ causes this code to hang when using the MRC cache/ Fix it. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'arch')
-rw-r--r--arch/x86/cpu/ivybridge/car.S2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/cpu/ivybridge/car.S b/arch/x86/cpu/ivybridge/car.S
index 407e451..1defabf 100644
--- a/arch/x86/cpu/ivybridge/car.S
+++ b/arch/x86/cpu/ivybridge/car.S
@@ -188,7 +188,7 @@ car_uninit:
wrmsr
/* Disable the no-eviction run state */
- movl NOEVICTMOD_MSR, %ecx
+ movl $NOEVICTMOD_MSR, %ecx
rdmsr
andl $~2, %eax
wrmsr