diff options
author | Ruiyu Ni <ruiyu.ni@intel.com> | 2015-05-12 09:49:28 +0000 |
---|---|---|
committer | niruiyu <niruiyu@Edk2> | 2015-05-12 09:49:28 +0000 |
commit | 182ac39771add63ccb88443d261c5a0e821d323c (patch) | |
tree | 32356b7f23b6285caed7a16010e2f27b53f0f22e /MdeModulePkg | |
parent | 96baece140b897fcac636e4978da506b557a8abf (diff) | |
download | edk2-platforms-182ac39771add63ccb88443d261c5a0e821d323c.tar.xz |
MdeModulePkg: Fix a typo to resolve legacy boot failure.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Ruiyu Ni <ruiyu.ni@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17419 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg')
-rw-r--r-- | MdeModulePkg/Library/UefiBootManagerLib/BmBoot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MdeModulePkg/Library/UefiBootManagerLib/BmBoot.c b/MdeModulePkg/Library/UefiBootManagerLib/BmBoot.c index 8d1a8c9d23..ede5250851 100644 --- a/MdeModulePkg/Library/UefiBootManagerLib/BmBoot.c +++ b/MdeModulePkg/Library/UefiBootManagerLib/BmBoot.c @@ -1506,7 +1506,7 @@ EfiBootManagerBoot ( // 5. Load EFI boot option to ImageHandle // ImageHandle = NULL; - if (BmDevicePathType (BootOption->FilePath) != BBS_DEVICE_PATH) { + if (DevicePathType (BootOption->FilePath) != BBS_DEVICE_PATH) { Status = EFI_NOT_FOUND; FileBuffer = BmGetLoadOptionBuffer (BootOption->FilePath, &FilePath, &FileSize); DEBUG_CODE ( |