Fix the wrong fixing for hardcore value 7.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5857 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
klu2 2008-09-09 05:19:30 +00:00
parent f008fc323b
commit 4efb2b4d92
1 changed files with 1 additions and 1 deletions

View File

@ -521,7 +521,7 @@ MmioRead64 (
//
// Make sure Address is aligned on a 64-bit boundary.
//
ASSERT ((Address & 7) == (sizeof (UINT64) - 1));
ASSERT ((Address & (sizeof (UINT64) - 1)) == 0);
return CpuIo->MemRead64 (PeiServices, CpuIo, (UINT64) Address);
}