mirror of https://github.com/acidanthera/audk.git
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:
parent
01bd6ea813
commit
554451b2de
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue