mirror of https://github.com/acidanthera/audk.git
UefiCpuPkg/CpuExceptionHandlerLib: remove un-used mReservedVectors
Cc: Feng Tian <feng.tian@intel.com> Cc: Jiewen Yao <jiewen.yao@intel.com> Cc: Michael D Kinney <michael.d.kinney@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jeff Fan <jeff.fan@intel.com> Reviewed-by: Feng Tian <feng.tian@intel.com>
This commit is contained in:
parent
368c54e718
commit
396fe30ad9
|
@ -1,7 +1,7 @@
|
||||||
/** @file
|
/** @file
|
||||||
CPU Exception Handler Library common functions.
|
CPU Exception Handler Library common functions.
|
||||||
|
|
||||||
Copyright (c) 2012 - 2015, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2012 - 2016, Intel Corporation. All rights reserved.<BR>
|
||||||
This program and the accompanying materials
|
This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
are licensed and made available under the terms and conditions of the BSD License
|
||||||
which accompanies this distribution. The full text of the license may be found at
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
|
@ -21,7 +21,6 @@
|
||||||
// 1 means an error code will be pushed, otherwise 0
|
// 1 means an error code will be pushed, otherwise 0
|
||||||
//
|
//
|
||||||
CONST UINT32 mErrorCodeFlag = 0x00027d00;
|
CONST UINT32 mErrorCodeFlag = 0x00027d00;
|
||||||
RESERVED_VECTORS_DATA *mReservedVectors = NULL;
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// Define the maximum message length
|
// Define the maximum message length
|
||||||
|
|
|
@ -55,7 +55,6 @@ typedef struct {
|
||||||
extern CONST UINT32 mErrorCodeFlag;
|
extern CONST UINT32 mErrorCodeFlag;
|
||||||
extern CONST UINTN mImageAlignSize;
|
extern CONST UINTN mImageAlignSize;
|
||||||
extern CONST UINTN mDoFarReturnFlag;
|
extern CONST UINTN mDoFarReturnFlag;
|
||||||
extern RESERVED_VECTORS_DATA *mReservedVectors;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Return address map of exception handler template so that C code can generate
|
Return address map of exception handler template so that C code can generate
|
||||||
|
|
Loading…
Reference in New Issue