Deleted Added
full compact
ips.h (119280) ips.h (119997)
1/*-
2 * Copyright (c) 2002 Adaptec Inc.
3 * All rights reserved.
4 *
5 * Written by: David Jeffery
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

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

20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 *
1/*-
2 * Copyright (c) 2002 Adaptec Inc.
3 * All rights reserved.
4 *
5 * Written by: David Jeffery
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

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

20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 *
28 * $FreeBSD: head/sys/dev/ips/ips.h 119280 2003-08-22 06:00:27Z imp $
28 * $FreeBSD: head/sys/dev/ips/ips.h 119997 2003-09-11 23:30:28Z ps $
29 */
30
31
32#include <sys/param.h>
33#include <sys/systm.h>
34#include <sys/kernel.h>
35#include <sys/bus.h>
36#include <sys/conf.h>

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

338 STAILQ_ENTRY(ips_wait_list) next;
339 void *data;
340 int (* callback)(ips_command_t *command);
341}ips_wait_list_t;
342
343typedef struct ips_softc{
344 struct resource * iores;
345 struct resource * irqres;
29 */
30
31
32#include <sys/param.h>
33#include <sys/systm.h>
34#include <sys/kernel.h>
35#include <sys/bus.h>
36#include <sys/conf.h>

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

338 STAILQ_ENTRY(ips_wait_list) next;
339 void *data;
340 int (* callback)(ips_command_t *command);
341}ips_wait_list_t;
342
343typedef struct ips_softc{
344 struct resource * iores;
345 struct resource * irqres;
346 struct intr_config_hook ips_ich;
346 int configured;
347 int state;
348 int iotype;
349 int rid;
350 int irqrid;
351 void * irqcookie;
352 bus_space_tag_t bustag;
353 bus_space_handle_t bushandle;

--- 51 unchanged lines hidden ---
347 int configured;
348 int state;
349 int iotype;
350 int rid;
351 int irqrid;
352 void * irqcookie;
353 bus_space_tag_t bustag;
354 bus_space_handle_t bushandle;

--- 51 unchanged lines hidden ---