Deleted Added
full compact
aac_cam.c (133540) aac_cam.c (138635)
1/*
2 * Copyright (c) 2002 Adaptec, Inc.
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

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

20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
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#include <sys/cdefs.h>
1/*
2 * Copyright (c) 2002 Adaptec, Inc.
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

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

20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
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#include <sys/cdefs.h>
28__FBSDID("$FreeBSD: head/sys/dev/aac/aac_cam.c 133540 2004-08-12 05:05:06Z scottl $");
28__FBSDID("$FreeBSD: head/sys/dev/aac/aac_cam.c 138635 2004-12-09 22:20:25Z scottl $");
29
30/*
31 * CAM front-end for communicating with non-DASD devices
32 */
33
34#include "opt_aac.h"
35
36#include <sys/param.h>

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

55#include <machine/md_var.h>
56#include <machine/bus.h>
57#include <sys/rman.h>
58
59#include <vm/vm.h>
60#include <vm/pmap.h>
61
62#include <dev/aac/aacreg.h>
29
30/*
31 * CAM front-end for communicating with non-DASD devices
32 */
33
34#include "opt_aac.h"
35
36#include <sys/param.h>

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

55#include <machine/md_var.h>
56#include <machine/bus.h>
57#include <sys/rman.h>
58
59#include <vm/vm.h>
60#include <vm/pmap.h>
61
62#include <dev/aac/aacreg.h>
63#include <dev/aac/aac_ioctl.h>
63#include <sys/aac_ioctl.h>
64#include <dev/aac/aacvar.h>
65
66struct aac_cam {
67 device_t dev;
68 struct aac_sim *inf;
69 struct cam_sim *sim;
70 struct cam_path *path;
71};

--- 549 unchanged lines hidden ---
64#include <dev/aac/aacvar.h>
65
66struct aac_cam {
67 device_t dev;
68 struct aac_sim *inf;
69 struct cam_sim *sim;
70 struct cam_path *path;
71};

--- 549 unchanged lines hidden ---