mirror of https://github.com/acidanthera/audk.git
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:
parent
f008fc323b
commit
4efb2b4d92
|
@ -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);
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue