Skip to content
This repository was archived by the owner on Mar 9, 2026. It is now read-only.

Commit 1191a65

Browse files
committed
Fixed fw recovery case where there are 100% non-functional modules
Signed-off-by: Glenn L Diviney <glenn.l.diviney@intel.com>
1 parent dbe77e2 commit 1191a65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DcpmPkg/cli/LoadCommand.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ Load(
203203

204204
/*Get the list of functional and non-functional dimms*/
205205
ReturnCode = GetDimmList(pNvmDimmConfigProtocol, pCmd, DIMM_INFO_CATEGORY_NONE, &pFunctionalDimms, &FunctionalDimmCount);
206-
if (EFI_ERROR(ReturnCode)) {
206+
if (EFI_ERROR(ReturnCode) && ReturnCode != EFI_NOT_FOUND) {
207207
goto Finish;
208208
}
209209

0 commit comments

Comments
 (0)