Changeset bfcf4cb3 in rtems for c/src/lib/libchip
- Timestamp:
- 09/11/98 23:35:09 (24 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 08142b48
- Parents:
- 23f014a
- Location:
- c/src/lib/libchip/serial
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libchip/serial/mc68681.c
r23f014a rbfcf4cb3 657 657 658 658 if(ucLineStatus & MC68681_IR_TX_READY) { 659 if (!rtems_termios_dequeue_characters(660 Console_Port_Data[minor].termios_data, 1)) {659 rtems_termios_dequeue_characters(Console_Port_Data[minor].termios_data, 1); 660 if (rtems_termios_is_more_to_tx( Console_Port_Data[minor].termios_data )) { 661 661 Console_Port_Data[minor].bActive = FALSE; 662 662 mc68681_enable_interrupts(minor, MC68681_IMR_ENABLE_ALL_EXCEPT_TX); -
c/src/lib/libchip/serial/ns16550.c
r23f014a rbfcf4cb3 488 488 #endif 489 489 490 if (!rtems_termios_dequeue_characters(491 Console_Port_Data[minor].termios_data, 1)) {490 rtems_termios_dequeue_characters(Console_Port_Data[minor].termios_data, 1); 491 if (rtems_termios_is_more_to_tx( Console_Port_Data[minor].termios_data )) { 492 492 if (Console_Port_Tbl[minor].pDeviceFlow != &ns16550_flow_RTSCTS) { 493 493 ns16550_negate_RTS(minor); -
c/src/lib/libchip/serial/z85c30.c
r23f014a rbfcf4cb3 604 604 #endif 605 605 606 if (!rtems_termios_dequeue_characters(607 Console_Port_Data[minor].termios_data, 1)) {606 rtems_termios_dequeue_characters(Console_Port_Data[minor].termios_data, 1); 607 if (rtems_termios_is_more_to_tx( Console_Port_Data[minor].termios_data )) { 608 608 if (Console_Port_Tbl[minor].pDeviceFlow != &z85c30_flow_RTSCTS) { 609 609 z85c30_negate_RTS(minor);
Note: See TracChangeset
for help on using the changeset viewer.