From 11ac162bf1536d4f2eaac9fedec1eec746b4512d Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Sat, 28 Feb 2009 18:19:30 -0500 Subject: [PATCH] Fix mptable MPCONFIG_SIGNATURE incorrect signature. --- src/mptable.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mptable.h b/src/mptable.h index 68f5e65..d8fecb3 100644 --- a/src/mptable.h +++ b/src/mptable.h @@ -16,7 +16,7 @@ struct mptable_floating_s { u8 reserved[3]; }; -#define MPCONFIG_SIGNATURE 0x50434d50 // "PCMP" +#define MPCONFIG_SIGNATURE 0x504d4350 // "PCMP" struct mptable_config_s { u32 signature; -- 2.25.1