diff options
author | oliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524> | 2012-09-26 20:21:20 +0000 |
---|---|---|
committer | oliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524> | 2012-09-26 20:21:20 +0000 |
commit | 554451b2de85d0f91b6e5ec82e9069f76a1a45d7 (patch) | |
tree | a4a413111c3abea6c52b1f64bc4cbecfbf39e0e4 | |
parent | 01bd6ea81358ae37a9b86140bf50f9a51e52dac6 (diff) | |
download | edk2-platforms-554451b2de85d0f91b6e5ec82e9069f76a1a45d7.tar.xz |
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
-rw-r--r-- | ArmPlatformPkg/Drivers/PL011Uart/PL011Uart.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/ArmPlatformPkg/Drivers/PL011Uart/PL011Uart.c b/ArmPlatformPkg/Drivers/PL011Uart/PL011Uart.c index f208fecd6e..2af207829d 100644 --- a/ArmPlatformPkg/Drivers/PL011Uart/PL011Uart.c +++ b/ArmPlatformPkg/Drivers/PL011Uart/PL011Uart.c @@ -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 {
|