MdeModulePkg/BdsDxe: Also call PlatformBootManagerWaitCallback on 0

The existing loop is set to call PlatformBootManagerWaitCallback every
second except the last one. We believe this is a mistake as it prevents
the called code from performing timeout expiration tasks such as, for
instance, ensuring that the last segment of a progress bar is displayed
before continuing (which is a current issue for the RPi3 platform).

Signed-off-by: Pete Batard <pete@akeo.ie>
Reviewed-by: Liming Gao <liming.gao@intel.com>
Reviewed-by: Ray Ni <ray.ni@intel.com>
This commit is contained in:
Pete Batard 2019-09-25 23:50:05 +08:00 committed by Liming Gao
parent 410c4d00d9
commit 2de1f611be
1 changed files with 1 additions and 0 deletions

View File

@ -341,6 +341,7 @@ BdsWait (
TimeoutRemain--;
}
}
PlatformBootManagerWaitCallback (0);
DEBUG ((EFI_D_INFO, "[Bds]Exit the waiting!\n"));
}