Deleted Added
full compact
rc.c (72244) rc.c (72521)
1/*
2 * Copyright (C) 1995 by Pavel Antonov, Moscow, Russia.
3 * Copyright (C) 1995 by Andrey A. Chernov, Moscow, Russia.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 10 unchanged lines hidden (view full) ---

19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 *
1/*
2 * Copyright (C) 1995 by Pavel Antonov, Moscow, Russia.
3 * Copyright (C) 1995 by Andrey A. Chernov, Moscow, Russia.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 10 unchanged lines hidden (view full) ---

19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 *
27 * $FreeBSD: head/sys/dev/rc/rc.c 72244 2001-02-09 18:35:53Z jhb $
27 * $FreeBSD: head/sys/dev/rc/rc.c 72521 2001-02-15 16:34:11Z jlemon $
28 *
29 */
30
31/*
32 * SDL Communications Riscom/8 (based on Cirrus Logic CL-CD180) driver
33 *
34 */
35

--- 66 unchanged lines hidden (view full) ---

102 /* ioctl */ rcioctl,
103 /* poll */ ttypoll,
104 /* mmap */ nommap,
105 /* strategy */ nostrategy,
106 /* name */ "rc",
107 /* maj */ CDEV_MAJOR,
108 /* dump */ nodump,
109 /* psize */ nopsize,
28 *
29 */
30
31/*
32 * SDL Communications Riscom/8 (based on Cirrus Logic CL-CD180) driver
33 *
34 */
35

--- 66 unchanged lines hidden (view full) ---

102 /* ioctl */ rcioctl,
103 /* poll */ ttypoll,
104 /* mmap */ nommap,
105 /* strategy */ nostrategy,
106 /* name */ "rc",
107 /* maj */ CDEV_MAJOR,
108 /* dump */ nodump,
109 /* psize */ nopsize,
110 /* flags */ D_TTY,
111 /* bmaj */ -1
110 /* flags */ D_TTY | D_KQFILTER,
111 /* bmaj */ -1,
112 /* kqfilter */ ttykqfilter,
112};
113
114/* Per-board structure */
115static struct rc_softc {
116 u_int rcb_probed; /* 1 - probed, 2 - attached */
117 u_int rcb_addr; /* Base I/O addr */
118 u_int rcb_unit; /* unit # */
119 u_char rcb_dtr; /* DTR status */

--- 1341 unchanged lines hidden ---
113};
114
115/* Per-board structure */
116static struct rc_softc {
117 u_int rcb_probed; /* 1 - probed, 2 - attached */
118 u_int rcb_addr; /* Base I/O addr */
119 u_int rcb_unit; /* unit # */
120 u_char rcb_dtr; /* DTR status */

--- 1341 unchanged lines hidden ---