mirror of https://github.com/acidanthera/audk.git
Cleaned the code for passing Visual Studio 2005 build
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4061 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
61296d0d5e
commit
0c6bbb63f9
|
@ -2115,7 +2115,7 @@ ReadConfigData (
|
||||||
|
|
||||||
Stride = 1 << AccessWidth;
|
Stride = 1 << AccessWidth;
|
||||||
AccessAddress += Stride;
|
AccessAddress += Stride;
|
||||||
if (AccessAddress >= (Address + (1 << Width))) {
|
if (AccessAddress >= (Address + (1ULL << Width))) {
|
||||||
//
|
//
|
||||||
// if all datas have been read, exist
|
// if all datas have been read, exist
|
||||||
//
|
//
|
||||||
|
@ -2382,7 +2382,7 @@ WriteConfigData (
|
||||||
|
|
||||||
Stride = 1 << AccessWidth;
|
Stride = 1 << AccessWidth;
|
||||||
AccessAddress += Stride;
|
AccessAddress += Stride;
|
||||||
if (AccessAddress >= (Address + (1 << Width))) {
|
if (AccessAddress >= (Address + (1ULL << Width))) {
|
||||||
//
|
//
|
||||||
// if all datas have been written, exist
|
// if all datas have been written, exist
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in New Issue