RTS shouldn't be touched unless CS_RTS_IFLOW is set.

This commit is contained in:
phk 1994-02-26 00:04:03 +00:00
parent 8795bd15ea
commit 8c48462520
3 changed files with 9 additions and 6 deletions

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)com.c 7.5 (Berkeley) 5/16/91
* $Id: sio.c,v 1.28 1994/02/07 18:37:21 ache Exp $
* $Id: sio.c,v 1.29 1994/02/24 16:39:48 phk Exp $
*/
#include "sio.h"
@ -1243,7 +1243,8 @@ siopoll()
* of input, so enable RTS if it is now disabled and
* there is room in the high-level buffer.
*/
if (!(com->mcr_image & MCR_RTS)
if ((com->state & CS_RTS_IFLOW)
&& !(com->mcr_image & MCR_RTS)
&& !(tp->t_state & TS_RTS_IFLOW))
outb(com->modem_ctl_port,
com->mcr_image |= MCR_RTS);

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)com.c 7.5 (Berkeley) 5/16/91
* $Id: sio.c,v 1.28 1994/02/07 18:37:21 ache Exp $
* $Id: sio.c,v 1.29 1994/02/24 16:39:48 phk Exp $
*/
#include "sio.h"
@ -1243,7 +1243,8 @@ siopoll()
* of input, so enable RTS if it is now disabled and
* there is room in the high-level buffer.
*/
if (!(com->mcr_image & MCR_RTS)
if ((com->state & CS_RTS_IFLOW)
&& !(com->mcr_image & MCR_RTS)
&& !(tp->t_state & TS_RTS_IFLOW))
outb(com->modem_ctl_port,
com->mcr_image |= MCR_RTS);

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)com.c 7.5 (Berkeley) 5/16/91
* $Id: sio.c,v 1.28 1994/02/07 18:37:21 ache Exp $
* $Id: sio.c,v 1.29 1994/02/24 16:39:48 phk Exp $
*/
#include "sio.h"
@ -1243,7 +1243,8 @@ siopoll()
* of input, so enable RTS if it is now disabled and
* there is room in the high-level buffer.
*/
if (!(com->mcr_image & MCR_RTS)
if ((com->state & CS_RTS_IFLOW)
&& !(com->mcr_image & MCR_RTS)
&& !(tp->t_state & TS_RTS_IFLOW))
outb(com->modem_ctl_port,
com->mcr_image |= MCR_RTS);