Changed to pass the build with Visual Studio 2005

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4076 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
jwang36 2007-10-10 07:04:47 +00:00
parent db01f13e00
commit 23bd66f425
1 changed files with 2 additions and 2 deletions

View File

@ -2113,7 +2113,7 @@ ReadConfigData (
return Status;
}
Stride = 1 << AccessWidth;
Stride = (UINTN)1 << AccessWidth;
AccessAddress += Stride;
if (AccessAddress >= (Address + LShiftU64 (1ULL, (UINTN)Width))) {
//
@ -2380,7 +2380,7 @@ WriteConfigData (
Data = RShiftU64 (Data, ((1 << AccessWidth) * 8));
Stride = 1 << AccessWidth;
Stride = (UINTN)1 << AccessWidth;
AccessAddress += Stride;
if (AccessAddress >= (Address + LShiftU64 (1ULL, (UINTN)Width))) {
//