From: Simon Glass Date: Mon, 7 Mar 2016 02:28:18 +0000 (-0700) Subject: x86: Correct duplicate POST values X-Git-Tag: v2016.05-rc1~307 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fde467772b763d9f3a4252e49af18957f0a0dfa3;p=platform%2Fkernel%2Fu-boot.git x86: Correct duplicate POST values Two power-on-self-test values are the same. Fix this. Signed-off-by: Simon Glass Reviewed-by: Bin Meng --- diff --git a/arch/x86/include/asm/post.h b/arch/x86/include/asm/post.h index f49ce99..6b774bd 100644 --- a/arch/x86/include/asm/post.h +++ b/arch/x86/include/asm/post.h @@ -29,8 +29,8 @@ #define POST_CPU_INFO 0x2d #define POST_PRE_MRC 0x2e #define POST_MRC 0x2f -#define POST_DRAM 0x2f -#define POST_LAPIC 0x30 +#define POST_DRAM 0x30 +#define POST_LAPIC 0x31 #define POST_RAM_FAILURE 0xea #define POST_BIST_FAILURE 0xeb