Add additional featuresState.fBits entries to simplify compiling and

testing Adaptec's vendor driver.

Submitted by:	Adaptec, driver 17517
This commit is contained in:
Ed Maste 2009-10-29 17:21:41 +00:00
parent c89d07b9f5
commit 8e43cc231b

View File

@ -192,7 +192,10 @@ struct aac_query_disk {
typedef union {
struct {
u_int32_t largeLBA : 1; /* disk support greater 2TB */
u_int32_t fReserved : 31;
u_int32_t IoctlBuf : 1; /* ARCIOCTL call support */
u_int32_t AIFSupport: 1; /* AIF support */
u_int32_t JBODSupport:1; /* fw + driver support JBOD */
u_int32_t fReserved : 28;
} fBits;
u_int32_t fValue;
} featuresState;