Deleted Added
full compact
aha_mca.c (127135) aha_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

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

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 * Based on aha_isa.c
27 */
28
29#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

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

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 * Based on aha_isa.c
27 */
28
29#include <sys/cdefs.h>
30__FBSDID("$FreeBSD: head/sys/dev/aha/aha_mca.c 127135 2004-03-17 17:50:55Z njl $");
30__FBSDID("$FreeBSD: head/sys/dev/aha/aha_mca.c 135260 2004-09-15 11:58:34Z phk $");
31
32#include <sys/types.h>
33#include <sys/param.h>
34#include <sys/kernel.h>
35#include <sys/lock.h>
36#include <sys/mutex.h>
37
38#include <sys/module.h>
39#include <sys/bus.h>
40#include <machine/bus.h>
41#include <machine/resource.h>
42#include <sys/rman.h>
43
31
32#include <sys/types.h>
33#include <sys/param.h>
34#include <sys/kernel.h>
35#include <sys/lock.h>
36#include <sys/mutex.h>
37
38#include <sys/module.h>
39#include <sys/bus.h>
40#include <machine/bus.h>
41#include <machine/resource.h>
42#include <sys/rman.h>
43
44#include <i386/isa/isa_dma.h>
44#include <isa/isavar.h>
45
46#include <dev/mca/mca_busreg.h>
47#include <dev/mca/mca_busvar.h>
48
49#include <dev/aha/ahareg.h>
50
51static struct mca_ident aha_mca_devs[] = {
52 { 0x0f1f, "Adaptec AHA-1640 SCSI Adapter" },

--- 186 unchanged lines hidden ---
45
46#include <dev/mca/mca_busreg.h>
47#include <dev/mca/mca_busvar.h>
48
49#include <dev/aha/ahareg.h>
50
51static struct mca_ident aha_mca_devs[] = {
52 { 0x0f1f, "Adaptec AHA-1640 SCSI Adapter" },

--- 186 unchanged lines hidden ---