Deleted Added
full compact
ncr.c (127135) ncr.c (129878)
1/**************************************************************************
2**
3**
4** Device driver for the NCR 53C8XX PCI-SCSI-Controller Family.
5**
6**-------------------------------------------------------------------------
7**
8** Written for 386bsd and FreeBSD by

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

34** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
35** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
36** THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37**
38***************************************************************************
39*/
40
41#include <sys/cdefs.h>
1/**************************************************************************
2**
3**
4** Device driver for the NCR 53C8XX PCI-SCSI-Controller Family.
5**
6**-------------------------------------------------------------------------
7**
8** Written for 386bsd and FreeBSD by

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

34** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
35** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
36** THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37**
38***************************************************************************
39*/
40
41#include <sys/cdefs.h>
42__FBSDID("$FreeBSD: head/sys/pci/ncr.c 127135 2004-03-17 17:50:55Z njl $");
42__FBSDID("$FreeBSD: head/sys/pci/ncr.c 129878 2004-05-30 20:00:41Z phk $");
43
44
45#define NCR_DATE "pl30 98/1/1"
46
47#define NCR_VERSION (2)
48#define MAX_UNITS (16)
49
50#define NCR_GETCC_WITHMSG

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

175
176#include <sys/param.h>
177#include <sys/time.h>
178
179#ifdef _KERNEL
180#include <sys/systm.h>
181#include <sys/malloc.h>
182#include <sys/kernel.h>
43
44
45#define NCR_DATE "pl30 98/1/1"
46
47#define NCR_VERSION (2)
48#define MAX_UNITS (16)
49
50#define NCR_GETCC_WITHMSG

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

175
176#include <sys/param.h>
177#include <sys/time.h>
178
179#ifdef _KERNEL
180#include <sys/systm.h>
181#include <sys/malloc.h>
182#include <sys/kernel.h>
183#include <sys/module.h>
183#include <sys/sysctl.h>
184#include <sys/bus.h>
185#include <machine/md_var.h>
186#include <machine/bus.h>
187#include <machine/resource.h>
188#include <sys/rman.h>
189#include <vm/vm.h>
190#include <vm/pmap.h>

--- 6950 unchanged lines hidden ---
184#include <sys/sysctl.h>
185#include <sys/bus.h>
186#include <machine/md_var.h>
187#include <machine/bus.h>
188#include <machine/resource.h>
189#include <sys/rman.h>
190#include <vm/vm.h>
191#include <vm/pmap.h>

--- 6950 unchanged lines hidden ---