mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-27 23:54:02 +02:00
EmbeddedPkg/GdbSerialDebugPortLib: fix compile warning
The value of gTimeOut is from PcdGdbMaxPacketRetryCount, and this PCD is UINT32. So change the declaratrion of gTimeOut to UINT32 to fix compile warning. Signed-off-by: Wenyi Xie <xiewenyi2@huawei.com> Reviewed-by: Ard Biesheuvel <ardb@kernel.org>
This commit is contained in:
parent
b5d1dc94d0
commit
c05a218a97
@ -17,7 +17,7 @@
|
|||||||
#include <Protocol/DebugPort.h>
|
#include <Protocol/DebugPort.h>
|
||||||
|
|
||||||
EFI_DEBUGPORT_PROTOCOL *gDebugPort = NULL;
|
EFI_DEBUGPORT_PROTOCOL *gDebugPort = NULL;
|
||||||
UINTN gTimeOut = 0;
|
UINT32 gTimeOut = 0;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
The constructor function initializes the UART.
|
The constructor function initializes the UART.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user