Deleted Added
full compact
bt_mca.c (127135) bt_mca.c (135260)
1/*-
2 * Copyright (c) 1999 Matthew N. Dodd <winter@jurai.net>
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

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

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 */
27
28#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1999 Matthew N. Dodd <winter@jurai.net>
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

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

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 */
27
28#include <sys/cdefs.h>
29__FBSDID("$FreeBSD: head/sys/dev/buslogic/bt_mca.c 127135 2004-03-17 17:50:55Z njl $");
29__FBSDID("$FreeBSD: head/sys/dev/buslogic/bt_mca.c 135260 2004-09-15 11:58:34Z phk $");
30
31/*
32 * Written using the bt_isa/bt_pci code as a reference.
33 *
34 * Thanks to Andy Farkas <andyf@speednet.com.au> for
35 * testing and feedback.
36 */
37

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

50
51#include <machine/bus.h>
52#include <machine/resource.h>
53#include <sys/rman.h>
54
55#include <dev/mca/mca_busreg.h>
56#include <dev/mca/mca_busvar.h>
57
30
31/*
32 * Written using the bt_isa/bt_pci code as a reference.
33 *
34 * Thanks to Andy Farkas <andyf@speednet.com.au> for
35 * testing and feedback.
36 */
37

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

50
51#include <machine/bus.h>
52#include <machine/resource.h>
53#include <sys/rman.h>
54
55#include <dev/mca/mca_busreg.h>
56#include <dev/mca/mca_busvar.h>
57
58#include <i386/isa/isa_dma.h>
58#include <isa/isavar.h>
59
60#include <dev/buslogic/btreg.h>
61
62#include <cam/scsi/scsi_all.h>
63
64static struct mca_ident bt_mca_devs[] = {
65 { 0x0708, "BusLogic 32 Bit Bus Master MCA-to-SCSI Host Adapter" },
66 { 0x0708, "BusTek BT-640A Micro Channel to SCSI Host Adapter" },

--- 274 unchanged lines hidden ---
59
60#include <dev/buslogic/btreg.h>
61
62#include <cam/scsi/scsi_all.h>
63
64static struct mca_ident bt_mca_devs[] = {
65 { 0x0708, "BusLogic 32 Bit Bus Master MCA-to-SCSI Host Adapter" },
66 { 0x0708, "BusTek BT-640A Micro Channel to SCSI Host Adapter" },

--- 274 unchanged lines hidden ---