mirror of https://github.com/acidanthera/audk.git
MdeModulePkg/CapsuleRuntimeDxe: Fix ECC issue
Add guard macro for new added header file. Cc: Star Zeng <star.zeng@intel.com> Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Dandan Bi <dandan.bi@intel.com> Reviewed-by: Star Zeng <star.zeng@intel.com>
This commit is contained in:
parent
14923c1a6b
commit
4e8ee0a08e
|
@ -1,4 +1,4 @@
|
|||
/** @file
|
||||
/** @file
|
||||
ARM implementation of architecture specific routines related to
|
||||
PersistAcrossReset capsules
|
||||
|
||||
|
|
|
@ -17,6 +17,9 @@
|
|||
|
||||
**/
|
||||
|
||||
#ifndef _CAPSULE_SERVICE_H_
|
||||
#define _CAPSULE_SERVICE_H_
|
||||
|
||||
#include <Uefi.h>
|
||||
|
||||
#include <Protocol/Capsule.h>
|
||||
|
@ -69,3 +72,5 @@ VOID
|
|||
CapsuleCacheWriteBack (
|
||||
IN EFI_PHYSICAL_ADDRESS ScatterGatherList
|
||||
);
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue