Deleted Added
full compact
adwcam.c (163896) adwcam.c (165102)
1/*-
2 * CAM SCSI interface for the the Advanced Systems Inc.
3 * Second Generation SCSI controllers.
4 *
5 * Product specific probe and attach routines can be found in:
6 *
7 * adw_pci.c ABP[3]940UW, ABP950UW, ABP3940U2W
8 *

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

39 *
40 * Redistribution and use in source and binary forms, with or without
41 * modification, are permitted provided that redistributions of source
42 * code retain the above copyright notice and this comment without
43 * modification.
44 */
45
46#include <sys/cdefs.h>
1/*-
2 * CAM SCSI interface for the the Advanced Systems Inc.
3 * Second Generation SCSI controllers.
4 *
5 * Product specific probe and attach routines can be found in:
6 *
7 * adw_pci.c ABP[3]940UW, ABP950UW, ABP3940U2W
8 *

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

39 *
40 * Redistribution and use in source and binary forms, with or without
41 * modification, are permitted provided that redistributions of source
42 * code retain the above copyright notice and this comment without
43 * modification.
44 */
45
46#include <sys/cdefs.h>
47__FBSDID("$FreeBSD: head/sys/dev/advansys/adwcam.c 163896 2006-11-02 00:54:38Z mjacob $");
47__FBSDID("$FreeBSD: head/sys/dev/advansys/adwcam.c 165102 2006-12-11 18:28:31Z mjacob $");
48
49#include <sys/param.h>
50#include <sys/systm.h>
51#include <sys/kernel.h>
52#include <sys/malloc.h>
53#include <sys/lock.h>
48
49#include <sys/param.h>
50#include <sys/systm.h>
51#include <sys/kernel.h>
52#include <sys/malloc.h>
53#include <sys/lock.h>
54#include <sys/module.h>
54#include <sys/mutex.h>
55#include <sys/bus.h>
56
57#include <machine/bus.h>
58#include <machine/resource.h>
59
60#include <sys/rman.h>
61

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

1575 /*
1576 * We will perform the async notification when the
1577 * SCSI Reset interrupt occurs.
1578 */
1579 } else
1580 xpt_async(AC_BUS_RESET, adw->path, NULL);
1581 adw->last_reset = CAM_SCSI_BUS_RESET;
1582}
55#include <sys/mutex.h>
56#include <sys/bus.h>
57
58#include <machine/bus.h>
59#include <machine/resource.h>
60
61#include <sys/rman.h>
62

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

1576 /*
1577 * We will perform the async notification when the
1578 * SCSI Reset interrupt occurs.
1579 */
1580 } else
1581 xpt_async(AC_BUS_RESET, adw->path, NULL);
1582 adw->last_reset = CAM_SCSI_BUS_RESET;
1583}
1584MODULE_DEPEND(adw, cam, 1, 1, 1);
1585