Deleted Added
full compact
if_edvar.h (92739) if_edvar.h (121118)
1/*
2 * Copyright (c) 1995, David Greenman
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

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

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

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

19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 *
27 * $FreeBSD: head/sys/dev/ed/if_edvar.h 92739 2002-03-20 02:08:01Z alfred $
27 * $FreeBSD: head/sys/dev/ed/if_edvar.h 121118 2003-10-15 17:22:15Z shiba $
28 */
29
30#ifndef SYS_DEV_ED_IF_EDVAR_H
31#define SYS_DEV_ED_IF_EDVAR_H
32/*
33 * ed_softc: per line info and status
34 */
35struct ed_softc {

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

194int ed_alloc_port (device_t, int, int);
195int ed_alloc_memory (device_t, int, int);
196int ed_alloc_irq (device_t, int, int);
197
198int ed_probe_generic8390 (struct ed_softc *);
199int ed_probe_WD80x3 (device_t, int, int);
200int ed_probe_WD80x3_generic (device_t, int, unsigned short *[]);
201int ed_probe_3Com (device_t, int, int);
28 */
29
30#ifndef SYS_DEV_ED_IF_EDVAR_H
31#define SYS_DEV_ED_IF_EDVAR_H
32/*
33 * ed_softc: per line info and status
34 */
35struct ed_softc {

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

194int ed_alloc_port (device_t, int, int);
195int ed_alloc_memory (device_t, int, int);
196int ed_alloc_irq (device_t, int, int);
197
198int ed_probe_generic8390 (struct ed_softc *);
199int ed_probe_WD80x3 (device_t, int, int);
200int ed_probe_WD80x3_generic (device_t, int, unsigned short *[]);
201int ed_probe_3Com (device_t, int, int);
202int ed_probe_SIC (device_t, int, int);
202int ed_probe_Novell (device_t, int, int);
203int ed_probe_Novell_generic (device_t, int);
204int ed_probe_HP_pclanp (device_t, int, int);
205
206int ed_attach (struct ed_softc *, int, int);
207void ed_stop (struct ed_softc *);
208void ed_pio_readmem (struct ed_softc *, int, unsigned char *,
209 unsigned short);

--- 14 unchanged lines hidden ---
203int ed_probe_Novell (device_t, int, int);
204int ed_probe_Novell_generic (device_t, int);
205int ed_probe_HP_pclanp (device_t, int, int);
206
207int ed_attach (struct ed_softc *, int, int);
208void ed_stop (struct ed_softc *);
209void ed_pio_readmem (struct ed_softc *, int, unsigned char *,
210 unsigned short);

--- 14 unchanged lines hidden ---