mirror of
https://github.com/acidanthera/audk.git
synced 2025-04-08 17:05:09 +02:00
ArmPlatformPkg/PL011Uart: Fixed condition
The aim of the condition is to check if we should use the default BaudRate value (case when *BaudRate == 0). Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Olivier Martin <olivier.martin@arm.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@14431 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
4076165359
commit
c57482d11c
@ -131,7 +131,7 @@ PL011UartInitializePort (
|
||||
//
|
||||
|
||||
// If BaudRate is zero then use default baud rate
|
||||
if (BaudRate == 0) {
|
||||
if (*BaudRate == 0) {
|
||||
if (PcdGet32 (PL011UartInteger) != 0) {
|
||||
MmioWrite32 (UartBase + UARTIBRD, PcdGet32 (PL011UartInteger));
|
||||
MmioWrite32 (UartBase + UARTFBRD, PcdGet32 (PL011UartFractional));
|
||||
|
Loading…
x
Reference in New Issue
Block a user