Deleted Added
full compact
digi.c (126078) digi.c (126080)
1/*-
2 * Copyright (c) 2001 Brian Somers <brian@Awfulhak.org>
3 * based on work by Slawa Olhovchenkov
4 * John Prince <johnp@knight-trosoft.com>
5 * Eric Hernes
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
1/*-
2 * Copyright (c) 2001 Brian Somers <brian@Awfulhak.org>
3 * based on work by Slawa Olhovchenkov
4 * John Prince <johnp@knight-trosoft.com>
5 * Eric Hernes
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * $FreeBSD: head/sys/dev/digi/digi.c 126078 2004-02-21 20:41:11Z phk $
29 * $FreeBSD: head/sys/dev/digi/digi.c 126080 2004-02-21 21:10:55Z phk $
30 */
31
32/*-
33 * TODO:
34 * Figure out what the con bios stuff is supposed to do
35 * Test with *LOTS* more cards - I only have a PCI8r and an ISA Xem.
36 */
37

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

137 0x02, 0x08, 0x10, 0x20, 0x40, 0x80
138};
139
140const struct digi_control_signals digi_normal_signals = {
141 0x02, 0x80, 0x20, 0x10, 0x40, 0x01
142};
143
144static struct cdevsw digi_sw = {
30 */
31
32/*-
33 * TODO:
34 * Figure out what the con bios stuff is supposed to do
35 * Test with *LOTS* more cards - I only have a PCI8r and an ISA Xem.
36 */
37

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

137 0x02, 0x08, 0x10, 0x20, 0x40, 0x80
138};
139
140const struct digi_control_signals digi_normal_signals = {
141 0x02, 0x80, 0x20, 0x10, 0x40, 0x01
142};
143
144static struct cdevsw digi_sw = {
145 .d_version = D_VERSION,
145 .d_open = digiopen,
146 .d_close = digiclose,
147 .d_read = digiread,
148 .d_write = digiwrite,
149 .d_ioctl = digiioctl,
150 .d_name = driver_name,
146 .d_open = digiopen,
147 .d_close = digiclose,
148 .d_read = digiread,
149 .d_write = digiwrite,
150 .d_ioctl = digiioctl,
151 .d_name = driver_name,
151 .d_flags = D_TTY,
152 .d_flags = D_TTY | D_NEEDGIANT,
152};
153
154static void
155digi_poll(void *ptr)
156{
157 struct digi_softc *sc;
158
159 sc = (struct digi_softc *)ptr;

--- 1795 unchanged lines hidden ---
153};
154
155static void
156digi_poll(void *ptr)
157{
158 struct digi_softc *sc;
159
160 sc = (struct digi_softc *)ptr;

--- 1795 unchanged lines hidden ---