Deleted Added
full compact
dpt_scsi.c (139749) dpt_scsi.c (146734)
1/*-
2 * Copyright (c) 1997 by Simon Shapiro
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

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

22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 */
29
1/*-
2 * Copyright (c) 1997 by Simon Shapiro
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

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

22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 */
29
30#ident "$FreeBSD: head/sys/dev/dpt/dpt_scsi.c 139749 2005-01-06 01:43:34Z imp $"
30#ident "$FreeBSD: head/sys/dev/dpt/dpt_scsi.c 146734 2005-05-29 04:42:30Z nyan $"
31#include <sys/cdefs.h>
31#include <sys/cdefs.h>
32__FBSDID("$FreeBSD: head/sys/dev/dpt/dpt_scsi.c 139749 2005-01-06 01:43:34Z imp $");
32__FBSDID("$FreeBSD: head/sys/dev/dpt/dpt_scsi.c 146734 2005-05-29 04:42:30Z nyan $");
33
34/*
35 * dpt_scsi.c: SCSI dependant code for the DPT driver
36 *
37 * credits: Assisted by Mike Neuffer in the early low level DPT code
38 * Thanx to Mark Salyzyn of DPT for his assistance.
39 * Special thanx to Justin Gibbs for invaluable help in
40 * making this driver look and work like a FreeBSD component.

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

53#include <sys/param.h>
54#include <sys/systm.h>
55#include <sys/eventhandler.h>
56#include <sys/malloc.h>
57#include <sys/kernel.h>
58
59#include <sys/bus.h>
60
33
34/*
35 * dpt_scsi.c: SCSI dependant code for the DPT driver
36 *
37 * credits: Assisted by Mike Neuffer in the early low level DPT code
38 * Thanx to Mark Salyzyn of DPT for his assistance.
39 * Special thanx to Justin Gibbs for invaluable help in
40 * making this driver look and work like a FreeBSD component.

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

53#include <sys/param.h>
54#include <sys/systm.h>
55#include <sys/eventhandler.h>
56#include <sys/malloc.h>
57#include <sys/kernel.h>
58
59#include <sys/bus.h>
60
61#include <machine/bus_memio.h>
62#include <machine/bus_pio.h>
63#include <machine/bus.h>
64
65#include <machine/resource.h>
66#include <sys/rman.h>
67
68#include <machine/clock.h>
69
70#include <cam/cam.h>

--- 2655 unchanged lines hidden ---
61#include <machine/bus.h>
62
63#include <machine/resource.h>
64#include <sys/rman.h>
65
66#include <machine/clock.h>
67
68#include <cam/cam.h>

--- 2655 unchanged lines hidden ---