]> git.proxmox.com Git - mirror_edk2.git/commitdiff
ArmPlatformPkg/PL011Uart: The PL011 UART fractional part does not need to be zero
authoroliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524>
Wed, 26 Sep 2012 20:21:20 +0000 (20:21 +0000)
committeroliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524>
Wed, 26 Sep 2012 20:21:20 +0000 (20:21 +0000)
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

ArmPlatformPkg/Drivers/PL011Uart/PL011Uart.c

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