Author: ion
Date: Sun Aug 18 17:51:56 2013
New Revision: 59773
URL:
http://svn.reactos.org/svn/reactos?rev=59773&view=rev
Log:
[KDCOM]: Also adhere to new standard.
Modified:
trunk/reactos/drivers/base/kdcom/kdcom.c
Modified: trunk/reactos/drivers/base/kdcom/kdcom.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/base/kdcom/kdcom.c…
==============================================================================
--- trunk/reactos/drivers/base/kdcom/kdcom.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/base/kdcom/kdcom.c [iso-8859-1] Sun Aug 18 17:51:56 2013
@@ -222,7 +222,7 @@
KdpPollByte(OUT PUCHAR OutByte)
{
/* Poll the byte */
- if (CpGetByte(&KdDebugComPort, OutByte, FALSE) == CP_GET_SUCCESS)
+ if (CpGetByte(&KdDebugComPort, OutByte, FALSE, TRUE) == CP_GET_SUCCESS)
{
return KDP_PACKET_RECEIVED;
}
@@ -237,7 +237,7 @@
KdpReceiveByte(OUT PUCHAR OutByte)
{
/* Get the byte */
- if (CpGetByte(&KdDebugComPort, OutByte, TRUE) == CP_GET_SUCCESS)
+ if (CpGetByte(&KdDebugComPort, OutByte, TRUE, FALSE) == CP_GET_SUCCESS)
{
return KDP_PACKET_RECEIVED;
}