diff options
author | andrewfish <andrewfish@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-05-28 22:50:59 +0000 |
---|---|---|
committer | andrewfish <andrewfish@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-05-28 22:50:59 +0000 |
commit | 6be6c2e04d32c9466ac60cf0d837ea9a28227dd4 (patch) | |
tree | 78827ebb862f6a6a2b81fedebee610a0b60a3ce3 /EmbeddedPkg | |
parent | e10a18f63c7dfd3ce8ac66fe0e416280ad28c031 (diff) | |
download | edk2-platforms-6be6c2e04d32c9466ac60cf0d837ea9a28227dd4.tar.xz |
NullDmaLib:DmaMap() function needs to return valid DeviceAddress.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10554 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'EmbeddedPkg')
-rwxr-xr-x | EmbeddedPkg/Library/NullDmaLib/NullDmaLib.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/EmbeddedPkg/Library/NullDmaLib/NullDmaLib.c b/EmbeddedPkg/Library/NullDmaLib/NullDmaLib.c index 0ea89190c9..74386dfa28 100755 --- a/EmbeddedPkg/Library/NullDmaLib/NullDmaLib.c +++ b/EmbeddedPkg/Library/NullDmaLib/NullDmaLib.c @@ -50,6 +50,8 @@ DmaMap ( OUT VOID **Mapping
)
{
+ *DeviceAddress = (PHYSICAL_ADDRESS)(UINTN)HostAddress;
+ *Mapping = NULL;
return EFI_SUCCESS;
}
|