Deleted Added
full compact
ppbconf.h (59712) ppbconf.h (118607)
1/*-
2 * Copyright (c) 1997, 1998, 1999 Nicolas Souchu
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

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

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

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

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: head/sys/dev/ppbus/ppbconf.h 59712 2000-04-27 21:08:24Z n_hibma $
26 * $FreeBSD: head/sys/dev/ppbus/ppbconf.h 118607 2003-08-07 15:04:27Z jhb $
27 *
28 */
29#ifndef __PPBCONF_H
30#define __PPBCONF_H
31
32#include <sys/queue.h>
33
34/*

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

182#define PPBUS_IVAR_IRQ 2
183
184/* other fields are reserved to the ppbus internals */
185
186struct ppb_device {
187
188 const char *name; /* name of the device */
189
27 *
28 */
29#ifndef __PPBCONF_H
30#define __PPBCONF_H
31
32#include <sys/queue.h>
33
34/*

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

182#define PPBUS_IVAR_IRQ 2
183
184/* other fields are reserved to the ppbus internals */
185
186struct ppb_device {
187
188 const char *name; /* name of the device */
189
190 ushort mode; /* current mode of the device */
191 ushort avm; /* available IEEE1284 modes of
190 u_short mode; /* current mode of the device */
191 u_short avm; /* available IEEE1284 modes of
192 * the device */
192 * the device */
193 uint flags; /* flags */
193 u_int flags; /* flags */
194
195 struct ppb_context ctx; /* context of the device */
196
197 /* mode dependent get msq. If NULL,
198 * IEEE1284 code is used */
199 struct ppb_xfer
200 get_xfer[PPB_MAX_XFER];
201

--- 75 unchanged lines hidden ---
194
195 struct ppb_context ctx; /* context of the device */
196
197 /* mode dependent get msq. If NULL,
198 * IEEE1284 code is used */
199 struct ppb_xfer
200 get_xfer[PPB_MAX_XFER];
201

--- 75 unchanged lines hidden ---