Deleted Added
full compact
uart_bus.h (286591) uart_bus.h (293781)
1/*-
2 * Copyright (c) 2003 Marcel Moolenaar
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 *

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

18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 *
1/*-
2 * Copyright (c) 2003 Marcel Moolenaar
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 *

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

18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 *
26 * $FreeBSD: head/sys/dev/uart/uart_bus.h 286591 2015-08-10 20:08:09Z ian $
26 * $FreeBSD: head/sys/dev/uart/uart_bus.h 293781 2016-01-12 18:42:00Z ian $
27 */
28
29#ifndef _DEV_UART_BUS_H_
30#define _DEV_UART_BUS_H_
31
32#ifndef KLD_MODULE
33#include "opt_uart.h"
34#endif

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

108 /* Transmitter data. */
109 uint8_t *sc_txbuf;
110 int sc_txdatasz;
111 int sc_txfifosz; /* Size of TX FIFO and buffer. */
112
113 /* Pulse capturing support (PPS). */
114 struct pps_state sc_pps;
115 int sc_pps_mode;
27 */
28
29#ifndef _DEV_UART_BUS_H_
30#define _DEV_UART_BUS_H_
31
32#ifndef KLD_MODULE
33#include "opt_uart.h"
34#endif

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

108 /* Transmitter data. */
109 uint8_t *sc_txbuf;
110 int sc_txdatasz;
111 int sc_txfifosz; /* Size of TX FIFO and buffer. */
112
113 /* Pulse capturing support (PPS). */
114 struct pps_state sc_pps;
115 int sc_pps_mode;
116 sbintime_t sc_pps_captime;
116
117 /* Upper layer data. */
118 void *sc_softih;
119 uint32_t sc_ttypend;
120 union {
121 /* TTY specific data. */
122 struct {
123 struct tty *tp;

--- 92 unchanged lines hidden ---
117
118 /* Upper layer data. */
119 void *sc_softih;
120 uint32_t sc_ttypend;
121 union {
122 /* TTY specific data. */
123 struct {
124 struct tty *tp;

--- 92 unchanged lines hidden ---