Deleted Added
full compact
fwohcivar.h (109379) fwohcivar.h (110146)
1/*
2 * Copyright (c) 1998-2002 Katsushi Kobayashi and Hidetoshi SHimokawa
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 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
29 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
30 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE.
32 *
1/*
2 * Copyright (c) 1998-2002 Katsushi Kobayashi and Hidetoshi SHimokawa
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 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
29 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
30 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE.
32 *
33 * $FreeBSD: head/sys/dev/firewire/fwohcivar.h 109379 2003-01-16 13:09:33Z simokawa $
33 * $FreeBSD: head/sys/dev/firewire/fwohcivar.h 110146 2003-01-31 14:14:45Z simokawa $
34 *
35 */
36typedef struct fwohci_softc {
37 struct firewire_comm fc;
38 bus_space_tag_t bst;
39 bus_space_handle_t bsh;
40 void *ih;
41#if __FreeBSD_version < 500000

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

69 u_int32_t *cromptr;
70 u_int32_t intmask;
71} fwohci_softc_t;
72void fwohci_intr __P((void *arg));
73int fwohci_init __P((struct fwohci_softc *, device_t));
74void fwohci_reset __P((struct fwohci_softc *, device_t));
75int fwohci_detach __P((struct fwohci_softc *, device_t));
76int fwohci_resume __P((struct fwohci_softc *, device_t));
34 *
35 */
36typedef struct fwohci_softc {
37 struct firewire_comm fc;
38 bus_space_tag_t bst;
39 bus_space_handle_t bsh;
40 void *ih;
41#if __FreeBSD_version < 500000

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

69 u_int32_t *cromptr;
70 u_int32_t intmask;
71} fwohci_softc_t;
72void fwohci_intr __P((void *arg));
73int fwohci_init __P((struct fwohci_softc *, device_t));
74void fwohci_reset __P((struct fwohci_softc *, device_t));
75int fwohci_detach __P((struct fwohci_softc *, device_t));
76int fwohci_resume __P((struct fwohci_softc *, device_t));
77int fwohci_shutdown __P((struct fwohci_softc *, device_t dev));
77int fwohci_stop __P((struct fwohci_softc *, device_t dev));