diff options
author | Marco Peereboom <marco@cvs.openbsd.org> | 2005-08-17 20:13:54 +0000 |
---|---|---|
committer | Marco Peereboom <marco@cvs.openbsd.org> | 2005-08-17 20:13:54 +0000 |
commit | 3bda35ca13a2283e46e006d24164376c229f46ef (patch) | |
tree | d165c897a17c8c88bfd9403b9f94c92a8d2f1c36 | |
parent | 71f4a38aa0153b94dc08e1aa43a39e059cccd058 (diff) |
Fix incorrect structure. Spotted by Jordan Hargrave.
-rw-r--r-- | sys/dev/ic/amireg.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/ic/amireg.h b/sys/dev/ic/amireg.h index 830e23cca4d..a61887cbadc 100644 --- a/sys/dev/ic/amireg.h +++ b/sys/dev/ic/amireg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: amireg.h,v 1.20 2005/08/01 16:39:10 marco Exp $ */ +/* $OpenBSD: amireg.h,v 1.21 2005/08/17 20:13:53 marco Exp $ */ /* * Copyright (c) 2000 Michael Shalayeff @@ -511,8 +511,10 @@ struct ami_fc_einquiry { u_int8_t ain_ldprop[AMI_BIG_MAX_LDRIVES]; u_int8_t ain_ldstat[AMI_BIG_MAX_LDRIVES]; + u_int8_t ain_pdstat[AMI_BIG_MAX_PDRIVES]; u_int16_t ain_pdfmtinp[AMI_BIG_MAX_PDRIVES]; u_int8_t ain_pdrates [80]; /* pdrv xfer rates */ + u_int8_t ain_pad[263]; /* pad to 1k */ }; struct ami_fc_prodinfo { |