diff options
author | andrewfish <andrewfish@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-02-10 01:49:46 +0000 |
---|---|---|
committer | andrewfish <andrewfish@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-02-10 01:49:46 +0000 |
commit | 883b666e0fc3c0ad13f7983bf79161007dce62ba (patch) | |
tree | e6b33cbd532777b795ee3dbeb54c750662073efd /ArmPkg/Library/DebugUncachedMemoryAllocationLib | |
parent | e83c843bbdc78e01adefe209e57afc756ca66a00 (diff) | |
download | edk2-platforms-883b666e0fc3c0ad13f7983bf79161007dce62ba.tar.xz |
Clean up UncachedMemoryAllocationLib to use CPU AP.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9960 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'ArmPkg/Library/DebugUncachedMemoryAllocationLib')
-rw-r--r-- | ArmPkg/Library/DebugUncachedMemoryAllocationLib/DebugUncachedMemoryAllocationLib.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ArmPkg/Library/DebugUncachedMemoryAllocationLib/DebugUncachedMemoryAllocationLib.c b/ArmPkg/Library/DebugUncachedMemoryAllocationLib/DebugUncachedMemoryAllocationLib.c index cdf6a85137..9c9ee9fb29 100644 --- a/ArmPkg/Library/DebugUncachedMemoryAllocationLib/DebugUncachedMemoryAllocationLib.c +++ b/ArmPkg/Library/DebugUncachedMemoryAllocationLib/DebugUncachedMemoryAllocationLib.c @@ -83,7 +83,8 @@ AddPagesToList ( NewNode->Buffer = Buffer;
NewNode->Allocation = Allocation;
-
+ NewNode->Pages = Pages;
+
InsertTailList (&mPageList, &NewNode->Link);
}
|