diff options
author | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-11-11 15:50:13 +0000 |
---|---|---|
committer | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-11-11 15:50:13 +0000 |
commit | 8e1ac15ab89d289a42bd687a91b94d1c4284d3f1 (patch) | |
tree | 7037c7f86339afd72c2506fa258ed6ad117525a6 /DuetPkg/FvbRuntimeService | |
parent | 008698ab3df1bd965fb2af26ee20b15dbb09ea99 (diff) | |
download | edk2-platforms-8e1ac15ab89d289a42bd687a91b94d1c4284d3f1.tar.xz |
1, Add <Library/DevicePathLib.h> for all source that use device path utility macros
2, Add DevicePathLib library class to module's INF that use device path utility macros
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6460 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'DuetPkg/FvbRuntimeService')
-rw-r--r-- | DuetPkg/FvbRuntimeService/FWBlockService.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/DuetPkg/FvbRuntimeService/FWBlockService.c b/DuetPkg/FvbRuntimeService/FWBlockService.c index faca5ea422..6926a43dcf 100644 --- a/DuetPkg/FvbRuntimeService/FWBlockService.c +++ b/DuetPkg/FvbRuntimeService/FWBlockService.c @@ -1751,7 +1751,7 @@ Returns: NULL
);
ASSERT_EFI_ERROR (Status);
- } else if (EfiIsDevicePathEnd (TempFwbDevicePath)) {
+ } else if (IsDevicePathEnd (TempFwbDevicePath)) {
//
// Device allready exists, so reinstall the FVB protocol
//
|