mirror of https://github.com/acidanthera/audk.git
Add comment about usage on EFI_SIZE_TO_PAGES() and EFI_PAGES_TO_SIZE macros.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11004 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
c5e0de8794
commit
740ee2ea40
|
@ -188,8 +188,12 @@ typedef union {
|
|||
#define EFI_PAGE_MASK 0xFFF
|
||||
#define EFI_PAGE_SHIFT 12
|
||||
|
||||
//
|
||||
// It is expected that a parameter for the following two macros is of type UINTN.
|
||||
// Be careful to pass a UINT64 parameter because 32-bit build break may happen
|
||||
// if << or >> shift operations are performed on a 64-bit integer with 32-bit C compiler.
|
||||
//
|
||||
#define EFI_SIZE_TO_PAGES(a) (((a) >> EFI_PAGE_SHIFT) + (((a) & EFI_PAGE_MASK) ? 1 : 0))
|
||||
|
||||
#define EFI_PAGES_TO_SIZE(a) ( (a) << EFI_PAGE_SHIFT)
|
||||
|
||||
///
|
||||
|
|
Loading…
Reference in New Issue