mirror of
https://github.com/reactos/reactos.git
synced 2025-07-14 02:34:14 +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
|
@ -134,16 +134,16 @@ WinLdrPortInitialize(IN ULONG BaudRate,
|
||||||
|
|
||||||
VOID
|
VOID
|
||||||
WinLdrPortPutByte(IN ULONG PortId,
|
WinLdrPortPutByte(IN ULONG PortId,
|
||||||
IN UCHAR Data)
|
IN UCHAR Byte)
|
||||||
{
|
{
|
||||||
CpPutByte(&Port[PortId], Data);
|
CpPutByte(&Port[PortId], Byte);
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOLEAN
|
BOOLEAN
|
||||||
WinLdrPortGetByte(IN ULONG PortId,
|
WinLdrPortGetByte(IN ULONG PortId,
|
||||||
OUT PUCHAR Data)
|
OUT PUCHAR Byte)
|
||||||
{
|
{
|
||||||
return CpGetByte(&Port[PortId], Data, TRUE, FALSE) == CP_GET_SUCCESS;
|
return CpGetByte(&Port[PortId], Byte, TRUE, FALSE) == CP_GET_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOLEAN
|
BOOLEAN
|
||||||
|
@ -311,3 +311,5 @@ WinLdrSetupEms(IN PCHAR BootOptions)
|
||||||
WinLdrInitializeHeadlessPort();
|
WinLdrInitializeHeadlessPort();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* EOF */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue