Deleted Added
full compact
scc_bfe.h (167996) scc_bfe.h (176772)
1/*-
2 * Copyright (c) 2004-2006 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) 2004-2006 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/scc/scc_bfe.h 167996 2007-03-28 18:05:17Z marcel $
26 * $FreeBSD: head/sys/dev/scc/scc_bfe.h 176772 2008-03-03 18:20:17Z raj $
27 */
28
29#ifndef _DEV_SCC_BFE_H_
30#define _DEV_SCC_BFE_H_
31
32#include <sys/serial.h>
33
34/*

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

105struct scc_class {
106 KOBJ_CLASS_FIELDS;
107 u_int cl_channels; /* Number of independent channels. */
108 u_int cl_class; /* SCC bus class ID. */
109 u_int cl_modes; /* Supported modes (bitset). */
110 int cl_range;
111};
112
27 */
28
29#ifndef _DEV_SCC_BFE_H_
30#define _DEV_SCC_BFE_H_
31
32#include <sys/serial.h>
33
34/*

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

105struct scc_class {
106 KOBJ_CLASS_FIELDS;
107 u_int cl_channels; /* Number of independent channels. */
108 u_int cl_class; /* SCC bus class ID. */
109 u_int cl_modes; /* Supported modes (bitset). */
110 int cl_range;
111};
112
113extern struct scc_class scc_quicc_class;
113extern struct scc_class scc_sab82532_class;
114extern struct scc_class scc_z8530_class;
115
116struct scc_softc {
117 KOBJ_FIELDS;
118 struct scc_class *sc_class;
119 struct scc_bas sc_bas;
120 device_t sc_dev;

--- 33 unchanged lines hidden ---
114extern struct scc_class scc_sab82532_class;
115extern struct scc_class scc_z8530_class;
116
117struct scc_softc {
118 KOBJ_FIELDS;
119 struct scc_class *sc_class;
120 struct scc_bas sc_bas;
121 device_t sc_dev;

--- 33 unchanged lines hidden ---