mirror of
https://github.com/reactos/reactos.git
synced 2025-04-30 19:19:00 +00:00
[FREELDR:HEADLESS]: Code formatting only.
svn path=/trunk/; revision=60673
This commit is contained in:
parent
a0873a65ed
commit
11d262db2f
1 changed files with 21 additions and 19 deletions
|
@ -78,7 +78,7 @@ WinLdrPortInitialize(IN ULONG BaudRate,
|
|||
{
|
||||
switch (PortNumber)
|
||||
{
|
||||
case 1:
|
||||
case 1:
|
||||
PortAddress = (PUCHAR)0x3F8;
|
||||
break;
|
||||
|
||||
|
@ -134,16 +134,16 @@ WinLdrPortInitialize(IN ULONG BaudRate,
|
|||
|
||||
VOID
|
||||
WinLdrPortPutByte(IN ULONG PortId,
|
||||
IN UCHAR Data)
|
||||
IN UCHAR Byte)
|
||||
{
|
||||
CpPutByte(&Port[PortId], Data);
|
||||
CpPutByte(&Port[PortId], Byte);
|
||||
}
|
||||
|
||||
BOOLEAN
|
||||
WinLdrPortGetByte(IN ULONG PortId,
|
||||
OUT PUCHAR Data)
|
||||
WinLdrPortGetByte(IN ULONG PortId,
|
||||
OUT PUCHAR Byte)
|
||||
{
|
||||
return CpGetByte(&Port[PortId], Data, TRUE, FALSE) == CP_GET_SUCCESS;
|
||||
return CpGetByte(&Port[PortId], Byte, TRUE, FALSE) == CP_GET_SUCCESS;
|
||||
}
|
||||
|
||||
BOOLEAN
|
||||
|
@ -156,7 +156,7 @@ WinLdrPortPollOnly(IN ULONG PortId)
|
|||
|
||||
VOID
|
||||
WinLdrEnableFifo(IN ULONG PortId,
|
||||
IN BOOLEAN Enable)
|
||||
IN BOOLEAN Enable)
|
||||
{
|
||||
CpEnableFifo(Port[PortId].Address, Enable);
|
||||
}
|
||||
|
@ -311,3 +311,5 @@ WinLdrSetupEms(IN PCHAR BootOptions)
|
|||
WinLdrInitializeHeadlessPort();
|
||||
}
|
||||
}
|
||||
|
||||
/* EOF */
|
||||
|
|
Loading…
Reference in a new issue