diff options
author | Simon Glass <sjg@chromium.org> | 2015-10-18 21:55:35 (GMT) |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-10-21 13:46:51 (GMT) |
commit | e9b3967c0c8faefb46213d6698c4bc21bf91598a (patch) | |
tree | d1020d40525ec52b354222ee1c3154c1e4caa86d /arch/x86/cpu | |
parent | 9fbc5ccd79d1c6faacd2027ca89e54f38f365e2e (diff) | |
download | u-boot-fsl-qoriq-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/x86/cpu')
-rw-r--r-- | arch/x86/cpu/ivybridge/car.S | 2 |
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 |