diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2006-04-22 02:36:29 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2006-04-22 02:36:29 +0000 |
commit | 359475550a15311cd16e2a0f31ffc172ea0ca6f5 (patch) | |
tree | 55f7460067a85c1127e13d94e0f6805e90fad359 /sys/dev/ic/aacvar.h | |
parent | a58ae6c4545dff70e7d21f25585f9ed4bad78349 (diff) |
Add support for the Adaptec RAID-On-Chip architecture. This in turn
provides support for the Adaptec 2130S and 2230SLP adapters.
From FreeBSD
ok dlg@
Diffstat (limited to 'sys/dev/ic/aacvar.h')
-rw-r--r-- | sys/dev/ic/aacvar.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/ic/aacvar.h b/sys/dev/ic/aacvar.h index 2be60aba46a..4a9dbf3c660 100644 --- a/sys/dev/ic/aacvar.h +++ b/sys/dev/ic/aacvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: aacvar.h,v 1.5 2005/11/18 05:39:10 nate Exp $ */ +/* $OpenBSD: aacvar.h,v 1.6 2006/04/22 02:36:26 brad Exp $ */ /*- * Copyright (c) 2000 Michael Smith @@ -182,6 +182,7 @@ struct aac_interface { extern struct aac_interface aac_fa_interface; extern struct aac_interface aac_sa_interface; extern struct aac_interface aac_rx_interface; +extern struct aac_interface aac_rkt_interface; #define AAC_GET_FWSTATUS(sc) ((sc)->aac_if.aif_get_fwstatus(sc)) #define AAC_QNOTIFY(sc, qbit) \ @@ -334,7 +335,8 @@ struct aac_softc int aac_hwif; /* controller hardware interface */ #define AAC_HWIF_I960RX 0 #define AAC_HWIF_STRONGARM 1 -#define AAC_HWIF_FALCON 2 +#define AAC_HWIF_FALCON 2 +#define AAC_HWIF_RKT 3 #define AAC_HWIF_UNKNOWN -1 struct aac_common *aac_common; |