Deleted Added
full compact
aac.c (87310) aac.c (89112)
1/*-
2 * Copyright (c) 2000 Michael Smith
3 * Copyright (c) 2001 Scott Long
4 * Copyright (c) 2000 BSDi
5 * Copyright (c) 2001 Adaptec, Inc.
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
1/*-
2 * Copyright (c) 2000 Michael Smith
3 * Copyright (c) 2001 Scott Long
4 * Copyright (c) 2000 BSDi
5 * Copyright (c) 2001 Adaptec, Inc.
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * $FreeBSD: head/sys/dev/aac/aac.c 87310 2001-12-03 22:55:14Z scottl $
29 * $FreeBSD: head/sys/dev/aac/aac.c 89112 2002-01-09 03:32:40Z msmith $
30 */
31
32/*
33 * Driver for the Adaptec 'FSA' family of PCI/SCSI RAID adapters.
34 */
35
36#include "opt_aac.h"
37

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

64#include <machine/bus.h>
65#include <machine/resource.h>
66
67#include <dev/aac/aacreg.h>
68#include <dev/aac/aac_ioctl.h>
69#include <dev/aac/aacvar.h>
70#include <dev/aac/aac_tables.h>
71
30 */
31
32/*
33 * Driver for the Adaptec 'FSA' family of PCI/SCSI RAID adapters.
34 */
35
36#include "opt_aac.h"
37

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

64#include <machine/bus.h>
65#include <machine/resource.h>
66
67#include <dev/aac/aacreg.h>
68#include <dev/aac/aac_ioctl.h>
69#include <dev/aac/aacvar.h>
70#include <dev/aac/aac_tables.h>
71
72devclass_t aac_devclass;
73
74static void aac_startup(void *arg);
75static void aac_add_container(struct aac_softc *sc,
76 struct aac_mntinforesponse *mir, int f);
77
78/* Command Processing */
79static void aac_startio(struct aac_softc *sc);
80static void aac_timeout(struct aac_softc *sc);
81static int aac_start(struct aac_command *cm);

--- 2675 unchanged lines hidden ---
72static void aac_startup(void *arg);
73static void aac_add_container(struct aac_softc *sc,
74 struct aac_mntinforesponse *mir, int f);
75
76/* Command Processing */
77static void aac_startio(struct aac_softc *sc);
78static void aac_timeout(struct aac_softc *sc);
79static int aac_start(struct aac_command *cm);

--- 2675 unchanged lines hidden ---