summaryrefslogtreecommitdiff
path: root/Core
diff options
context:
space:
mode:
authorHao Wu <hao.a.wu@intel.com>2017-05-16 13:24:29 +0800
committerGuo Mang <mang.guo@intel.com>2017-07-12 11:24:45 +0800
commit43b052fcfd68bf5fba06272135ff3aa1af5cbb6b (patch)
treea1a69e854b442009cedf6931f1272a7f7458cfe0 /Core
parentb5d2ba083f2700e4fea6d9a959c8c3afb01106bd (diff)
downloadedk2-platforms-43b052fcfd68bf5fba06272135ff3aa1af5cbb6b.tar.xz
MdeModulePkg/UfsPassThruDxe: Fix typo in UfsPassThruGetTargetLun()
For function UfsPassThruGetTargetLun(), the length of the input device node specified by 'DevicePath' should be compared with the size of 'UFS_DEVICE_PATH' rather than the size of 'SCSI_DEVICE_PATH'. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Hao Wu <hao.a.wu@intel.com> Reviewed-by: Star Zeng <star.zeng@intel.com> (cherry picked from commit a8321feebb6af978478e0da559806602bd2dcc7d)
Diffstat (limited to 'Core')
-rw-r--r--Core/MdeModulePkg/Bus/Ufs/UfsPassThruDxe/UfsPassThru.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Core/MdeModulePkg/Bus/Ufs/UfsPassThruDxe/UfsPassThru.c b/Core/MdeModulePkg/Bus/Ufs/UfsPassThruDxe/UfsPassThru.c
index 68a44367b5..e27f4fbab1 100644
--- a/Core/MdeModulePkg/Bus/Ufs/UfsPassThruDxe/UfsPassThru.c
+++ b/Core/MdeModulePkg/Bus/Ufs/UfsPassThruDxe/UfsPassThru.c
@@ -479,10 +479,10 @@ UfsPassThruGetTargetLun (
}
//
- // Check whether the DevicePath belongs to SCSI_DEVICE_PATH
+ // Check whether the DevicePath belongs to UFS_DEVICE_PATH
//
if ((DevicePath->Type != MESSAGING_DEVICE_PATH) || (DevicePath->SubType != MSG_UFS_DP) ||
- (DevicePathNodeLength(DevicePath) != sizeof(SCSI_DEVICE_PATH))) {
+ (DevicePathNodeLength(DevicePath) != sizeof(UFS_DEVICE_PATH))) {
return EFI_UNSUPPORTED;
}