Marshall Dawson has uploaded this change for review. ( https://review.coreboot.org/28533
Change subject: include/cper.h: Add max of enum ......................................................................
include/cper.h: Add max of enum
Define the maximum value of the cper_x86_check_type enum, for use later in determining a legal function argument.
Change-Id: I73df4c6daa5d232c2d38b0896442b5bcab5aa15f Signed-off-by: Marshall Dawson marshalldawson3rd@gmail.com --- M src/include/cper.h 1 file changed, 1 insertion(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/33/28533/1
diff --git a/src/include/cper.h b/src/include/cper.h index 88c7cba..1604041 100644 --- a/src/include/cper.h +++ b/src/include/cper.h @@ -216,6 +216,7 @@ X86_PROCESSOR_BUS_CHK, /* X86_PROCESSOR_BUS_CHK_ERROR_GUID */ X86_PROCESSOR_MS_CHK /* X86_PROCESSOR_MS_CHK_ERROR_GUID */ }; +#define X86_PROCESSOR_CHK_MAX X86_PROCESSOR_MS_CHK
/* IA32/X64 Processor Error Information Structure, Validation Bits (Tbl 256) */ #define I32X64ERRINFO_VALID_CHECK BIT(0)