diff options
author | Simon Glass | 2015-10-18 15:55:35 -0600 |
---|---|---|
committer | Simon Glass | 2015-10-21 07:46:51 -0600 |
commit | e9b3967c0c8faefb46213d6698c4bc21bf91598a (patch) | |
tree | d1020d40525ec52b354222ee1c3154c1e4caa86d /arch/x86 | |
parent | 9fbc5ccd79d1c6faacd2027ca89e54f38f365e2e (diff) |
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')
-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 407e451adcd..1defabf91f0 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 |