Deleted Added
full compact
sio.c (29715) sio.c (30368)
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

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

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 * from: @(#)com.c 7.5 (Berkeley) 5/16/91
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

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

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 * from: @(#)com.c 7.5 (Berkeley) 5/16/91
34 * $Id: sio.c,v 1.38 1997/09/20 05:28:02 kato Exp $
34 * $Id: sio.c,v 1.39 1997/09/22 12:23:49 kato Exp $
35 */
36
37#include "opt_comconsole.h"
38#include "opt_ddb.h"
39#include "opt_sio.h"
40#include "sio.h"
41#include "pnp.h"
42

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

126#undef COM_MULTIPORT /* COM_MULTIPORT will conflict with B98_01 */
127#define COM_IF_B98_01 4
128#endif /* B98_01 */
129#endif /* PC98 */
130
131#include <sys/param.h>
132#include <sys/systm.h>
133#include <sys/reboot.h>
35 */
36
37#include "opt_comconsole.h"
38#include "opt_ddb.h"
39#include "opt_sio.h"
40#include "sio.h"
41#include "pnp.h"
42

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

126#undef COM_MULTIPORT /* COM_MULTIPORT will conflict with B98_01 */
127#define COM_IF_B98_01 4
128#endif /* B98_01 */
129#endif /* PC98 */
130
131#include <sys/param.h>
132#include <sys/systm.h>
133#include <sys/reboot.h>
134#include <sys/malloc.h>
134#include <sys/tty.h>
135#include <sys/proc.h>
136#include <sys/conf.h>
137#include <sys/dkstat.h>
138#include <sys/fcntl.h>
139#include <sys/kernel.h>
135#include <sys/tty.h>
136#include <sys/proc.h>
137#include <sys/conf.h>
138#include <sys/dkstat.h>
139#include <sys/fcntl.h>
140#include <sys/kernel.h>
140#include <sys/malloc.h>
141#include <sys/syslog.h>
142#include <sys/sysctl.h>
143#ifdef DEVFS
144#include <sys/devfsext.h>
145#endif
146
147#include <machine/clock.h>
148

--- 4110 unchanged lines hidden ---
141#include <sys/syslog.h>
142#include <sys/sysctl.h>
143#ifdef DEVFS
144#include <sys/devfsext.h>
145#endif
146
147#include <machine/clock.h>
148

--- 4110 unchanged lines hidden ---