You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.7 KiB
50 lines
1.7 KiB
/************************************************************************/
|
|
/* */
|
|
/* Title : SPEED support funcs for INTERNAL IOCTLs */
|
|
/* */
|
|
/* Author : N.P.Vassallo */
|
|
/* */
|
|
/* Creation : 14th October 1998 */
|
|
/* */
|
|
/* Version : 1.0.0 */
|
|
/* */
|
|
/* Description : Support functions to support the */
|
|
/* INTERNAL IOCTLs for specific hardware: */
|
|
/* XXX_SetHandFlow */
|
|
/* */
|
|
/************************************************************************/
|
|
|
|
/* History...
|
|
|
|
1.0.0 14/20/98 NPV Creation.
|
|
|
|
*/
|
|
|
|
#include "precomp.h"
|
|
|
|
/*****************************************************************************
|
|
***************************** ****************************
|
|
***************************** XXX_SetHandFlow ****************************
|
|
***************************** ****************************
|
|
******************************************************************************
|
|
|
|
prototype: void XXX_SetHandFlow(IN PPORT_DEVICE_EXTENSION pPort, IN PSERIAL_IOCTL_SYNC pS)
|
|
|
|
description: Call to set the handshaking and flow control
|
|
|
|
parameters: pPort points to the port device extension structure
|
|
pS points to a serial ioctl synchronization structure
|
|
|
|
returns: STATUS_SUCCESS
|
|
|
|
*/
|
|
|
|
void XXX_SetHandFlow(IN PPORT_DEVICE_EXTENSION pPort,IN PSERIAL_IOCTL_SYNC pS)
|
|
{
|
|
PCARD_DEVICE_EXTENSION pCard = pPort->pParentCardExt;
|
|
|
|
KeSynchronizeExecution(pCard->Interrupt, SerialSetHandFlow, pS);
|
|
|
|
} /* XXX_SetHandFlow */
|
|
|
|
/* End of IO8_IIOC.C */
|