Deleted Added
full compact
idavar.h (125975) idavar.h (130585)
1/*-
2 * Copyright (c) 1999,2000 Jonathan Lemon
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) 1999,2000 Jonathan Lemon
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/ida/idavar.h 125975 2004-02-18 21:36:53Z phk $
26 * $FreeBSD: head/sys/dev/ida/idavar.h 130585 2004-06-16 09:47:26Z phk $
27 */
28
29/*
30 * software structures for the Compaq RAID controller
31 */
32
33#ifndef _IDAVAR_H
34#define _IDAVAR_H

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

121 */
122#define IDA_ATTACHED 0x01 /* attached */
123#define IDA_FIRMWARE 0x02 /* firmware must be started */
124#define IDA_INTERRUPTS 0x04 /* interrupts enabled */
125
126struct ida_softc {
127 device_t dev;
128 int unit;
27 */
28
29/*
30 * software structures for the Compaq RAID controller
31 */
32
33#ifndef _IDAVAR_H
34#define _IDAVAR_H

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

121 */
122#define IDA_ATTACHED 0x01 /* attached */
123#define IDA_FIRMWARE 0x02 /* firmware must be started */
124#define IDA_INTERRUPTS 0x04 /* interrupts enabled */
125
126struct ida_softc {
127 device_t dev;
128 int unit;
129 dev_t ida_dev_t;
129 struct cdev *ida_dev_t;
130
131 int regs_res_type;
132 int regs_res_id;
133 struct resource *regs;
134
135 int irq_res_type;
136 struct resource *irq;
137 void *ih;

--- 67 unchanged lines hidden ---
130
131 int regs_res_type;
132 int regs_res_id;
133 struct resource *regs;
134
135 int irq_res_type;
136 struct resource *irq;
137 void *ih;

--- 67 unchanged lines hidden ---