Deleted Added
sdiff udiff text old ( 55364 ) new ( 56004 )
full compact
1/* $FreeBSD: head/sys/dev/isp/ispvar.h 56004 2000-01-15 01:47:10Z mjacob $ */
2/*
3 * Soft Definitions for for Qlogic ISP SCSI adapters.
4 *
5 * Copyright (c) 1997, 1998, 1999 by Matthew Jacob
6 * NASA/Ames Research Center
7 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without

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

34
35#ifndef _ISPVAR_H
36#define _ISPVAR_H
37
38#if defined(__NetBSD__) || defined(__OpenBSD__)
39#include <dev/ic/ispmbox.h>
40#ifdef ISP_TARGET_MODE
41#include <dev/ic/isp_target.h>
42#include <dev/ic/isp_tpublic.h>
43#endif
44#endif
45#ifdef __FreeBSD__
46#include <dev/isp/ispmbox.h>
47#ifdef ISP_TARGET_MODE
48#include <dev/isp/isp_target.h>
49#include <dev/isp/isp_tpublic.h>
50#endif
51#endif
52#ifdef __linux__
53#include "ispmbox.h"
54#ifdef ISP_TARGET_MODE
55#include "isp_target.h"
56#include "isp_tpublic.h"
57#endif
58#endif
59
60#define ISP_CORE_VERSION_MAJOR 1
61#define ISP_CORE_VERSION_MINOR 12
62
63/*
64 * Vector for bus specific code to provide specific services.

--- 425 unchanged lines hidden ---