Deleted Added
full compact
sio.c (55124) sio.c (55823)
1/*-
2 * Copyright (c) 1991 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
1/*-
2 * Copyright (c) 1991 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * $FreeBSD: head/sys/dev/sio/sio.c 55124 1999-12-27 05:02:25Z peter $
33 * $FreeBSD: head/sys/dev/sio/sio.c 55823 2000-01-11 14:54:01Z yokota $
34 * from: @(#)com.c 7.5 (Berkeley) 5/16/91
35 * from: i386/isa sio.c,v 1.234
36 */
37
38#include "opt_comconsole.h"
39#include "opt_compat.h"
40#include "opt_ddb.h"
41#include "opt_sio.h"

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

2677
2678static cn_probe_t siocnprobe;
2679static cn_init_t siocninit;
2680static cn_checkc_t siocncheckc;
2681static cn_getc_t siocngetc;
2682static cn_putc_t siocnputc;
2683
2684#ifdef __i386__
34 * from: @(#)com.c 7.5 (Berkeley) 5/16/91
35 * from: i386/isa sio.c,v 1.234
36 */
37
38#include "opt_comconsole.h"
39#include "opt_compat.h"
40#include "opt_ddb.h"
41#include "opt_sio.h"

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

2677
2678static cn_probe_t siocnprobe;
2679static cn_init_t siocninit;
2680static cn_checkc_t siocncheckc;
2681static cn_getc_t siocngetc;
2682static cn_putc_t siocnputc;
2683
2684#ifdef __i386__
2685CONS_DRIVER(sio, siocnprobe, siocninit, NULL, siocngetc, siocncheckc, siocnputc);
2686
2685CONS_DRIVER(sio, siocnprobe, siocninit, NULL, siocngetc, siocncheckc,
2686 siocnputc, NULL);
2687#endif
2688
2689/* To get the GDB related variables */
2690#if DDB > 0
2691#include <ddb/ddb.h>
2692#endif
2693
2694static void

--- 428 unchanged lines hidden ---
2687#endif
2688
2689/* To get the GDB related variables */
2690#if DDB > 0
2691#include <ddb/ddb.h>
2692#endif
2693
2694static void

--- 428 unchanged lines hidden ---