Deleted Added
full compact
sio.c (48557) sio.c (49558)
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 * $Id: sio.c,v 1.98 1999/06/24 10:51:35 kato Exp $
33 * $Id: sio.c,v 1.99 1999/07/04 14:58:45 phk Exp $
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_devfs.h"

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

3904 else
3905 tp->t_state &= ~TS_CAN_BYPASS_L_RINT;
3906 com->hotchar = linesw[tp->t_line].l_hotchar;
3907}
3908
3909/*
3910 * Following are all routines needed for SIO to act as console
3911 */
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_devfs.h"

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

3904 else
3905 tp->t_state &= ~TS_CAN_BYPASS_L_RINT;
3906 com->hotchar = linesw[tp->t_line].l_hotchar;
3907}
3908
3909/*
3910 * Following are all routines needed for SIO to act as console
3911 */
3912#include <machine/cons.h>
3912#include <sys/cons.h>
3913
3914struct siocnstate {
3915 u_char dlbl;
3916 u_char dlbh;
3917 u_char ier;
3918 u_char cfcr;
3919 u_char mcr;
3920};

--- 1105 unchanged lines hidden ---
3913
3914struct siocnstate {
3915 u_char dlbl;
3916 u_char dlbh;
3917 u_char ier;
3918 u_char cfcr;
3919 u_char mcr;
3920};

--- 1105 unchanged lines hidden ---