Deleted Added
full compact
27c27
< __FBSDID("$FreeBSD: head/sys/boot/i386/libi386/comconsole.c 119482 2003-08-25 23:28:32Z obrien $");
---
> __FBSDID("$FreeBSD: head/sys/boot/i386/libi386/comconsole.c 120118 2003-09-16 11:24:23Z bde $");
31a32
> #include <dev/ic/ns16550.h>
34,53d34
< /* selected defines from ns16550.h */
< #define com_data 0 /* data register (R/W) */
< #define com_dlbl 0 /* divisor latch low (W) */
< #define com_dlbh 1 /* divisor latch high (W) */
< #define com_ier 1 /* interrupt enable (W) */
< #define com_iir 2 /* interrupt identification (R) */
< #define com_fifo 2 /* FIFO control (W) */
< #define com_lctl 3 /* line control register (R/W) */
< #define com_cfcr 3 /* line control register (R/W) */
< #define com_mcr 4 /* modem control register (R/W) */
< #define com_lsr 5 /* line status register (R/W) */
< #define com_msr 6 /* modem status register (R/W) */
<
< /* selected defines from sioreg.h */
< #define CFCR_DLAB 0x80
< #define MCR_RTS 0x02
< #define MCR_DTR 0x01
< #define LSR_TXRDY 0x20
< #define LSR_RXRDY 0x01
<