ArmPlatformPkg/PL011Uart: The PL011 UART fractional part does not need to be zero

Signed-off-by: Olivier Martin <olivier.martin@arm.com>



git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13745 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
oliviermartin 2012-09-26 20:21:20 +00:00
parent 01bd6ea813
commit 554451b2de
1 changed files with 0 additions and 3 deletions

View File

@ -131,9 +131,6 @@ PL011UartInitializePort (
// Baud Rate
//
if (PcdGet32(PL011UartInteger) != 0) {
// Integer and Factional part must be different of 0
ASSERT(PcdGet32(PL011UartFractional) != 0);
MmioWrite32 (UartBase + UARTIBRD, PcdGet32(PL011UartInteger));
MmioWrite32 (UartBase + UARTFBRD, PcdGet32(PL011UartFractional));
} else {