ShellPkg/DP: Update the error message info
Make the error message clearer if fail to get ACPI/FPDT table. Cc: Liming Gao <liming.gao@intel.com> Cc: Jiewen Yao <jiewen.yao@intel.com> Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Dandan Bi <dandan.bi@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com>
This commit is contained in:
@ -258,6 +258,7 @@ GetBootPerformanceTable (
|
||||
);
|
||||
}
|
||||
if (EFI_ERROR(Status) || AcpiTable == NULL) {
|
||||
ShellPrintHiiEx (-1, -1, NULL, STRING_TOKEN (STR_DP_GET_ACPI_TABLE_FAIL), mDpHiiHandle);
|
||||
return Status;
|
||||
}
|
||||
|
||||
@ -266,6 +267,7 @@ GetBootPerformanceTable (
|
||||
EFI_ACPI_5_0_FIRMWARE_PERFORMANCE_DATA_TABLE_SIGNATURE
|
||||
);
|
||||
if (FirmwarePerformanceTable == NULL) {
|
||||
ShellPrintHiiEx (-1, -1, NULL, STRING_TOKEN (STR_DP_GET_ACPI_FPDT_FAIL), mDpHiiHandle);
|
||||
return EFI_NOT_FOUND;
|
||||
}
|
||||
|
||||
@ -739,7 +741,6 @@ RunDp (
|
||||
//
|
||||
Status = GetBootPerformanceTable ();
|
||||
if (EFI_ERROR(Status)) {
|
||||
ShellPrintHiiEx (-1, -1, NULL, STRING_TOKEN (STR_DP_GET_BOOT_PERFORMANCE_TABLE_FAIL), mDpHiiHandle);
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user