From: Simon Glass Date: Sun, 18 Oct 2015 21:55:35 +0000 (-0600) Subject: x86: ivybridge: Fix car_uninit() to correctly set run state X-Git-Tag: v2016.01-rc1~298^2~3 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e9b3967c0c8faefb46213d6698c4bc21bf91598a;p=oweals%2Fu-boot.git 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 Reviewed-by: Bin Meng --- diff --git a/arch/x86/cpu/ivybridge/car.S b/arch/x86/cpu/ivybridge/car.S index 407e451adc..1defabf91f 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