Deleted Added
full compact
ips.h (114902) ips.h (116852)
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 114902 2003-05-11 06:36:49Z scottl $
28 * $FreeBSD: head/sys/dev/ips/ips.h 116852 2003-06-26 00:03:59Z scottl $
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 int state;
346 int configured;
347 int state;
347 int iotype;
348 int rid;
349 int irqrid;
350 void * irqcookie;
351 bus_space_tag_t bustag;
352 bus_space_handle_t bushandle;
353 bus_dma_tag_t adapter_dmatag;
354 bus_dma_tag_t command_dmatag;

--- 49 unchanged lines hidden ---
348 int iotype;
349 int rid;
350 int irqrid;
351 void * irqcookie;
352 bus_space_tag_t bustag;
353 bus_space_handle_t bushandle;
354 bus_dma_tag_t adapter_dmatag;
355 bus_dma_tag_t command_dmatag;

--- 49 unchanged lines hidden ---