diff options
author | Mark Haverkamp <markh@osdl.org> | 2005-08-03 18:38:55 -0400 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.(none)> | 2005-08-05 17:50:26 -0400 |
commit | c7f476023f57145357df32346b7de9202ce47d5f (patch) | |
tree | a73d27c245d024ea9e0e0651d3ca524ef74ba9b5 /drivers/scsi/aacraid/aacraid.h | |
parent | bed30de47b034b5f28fb7db2fae4860b9d9c0622 (diff) |
[SCSI] aacraid: driver version update
Received from Mark Salyzyn from Adaptec.
Fixes a bug in check_revision. It should return the driver version not
the firmware version.
Update driver version number.
Update driver version string.
Signed-off-by: Mark Haverkamp <markh@osdl.org>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi/aacraid/aacraid.h')
-rw-r--r-- | drivers/scsi/aacraid/aacraid.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/scsi/aacraid/aacraid.h b/drivers/scsi/aacraid/aacraid.h index 3a11a536c0da..ddbbb85b3a7c 100644 --- a/drivers/scsi/aacraid/aacraid.h +++ b/drivers/scsi/aacraid/aacraid.h | |||
@@ -1512,11 +1512,12 @@ struct fib_ioctl | |||
1512 | 1512 | ||
1513 | struct revision | 1513 | struct revision |
1514 | { | 1514 | { |
1515 | u32 compat; | 1515 | __le32 compat; |
1516 | u32 version; | 1516 | __le32 version; |
1517 | u32 build; | 1517 | __le32 build; |
1518 | }; | 1518 | }; |
1519 | 1519 | ||
1520 | |||
1520 | /* | 1521 | /* |
1521 | * Ugly - non Linux like ioctl coding for back compat. | 1522 | * Ugly - non Linux like ioctl coding for back compat. |
1522 | */ | 1523 | */ |
@@ -1737,3 +1738,4 @@ int aac_get_adapter_info(struct aac_dev* dev); | |||
1737 | int aac_send_shutdown(struct aac_dev *dev); | 1738 | int aac_send_shutdown(struct aac_dev *dev); |
1738 | extern int numacb; | 1739 | extern int numacb; |
1739 | extern int acbsize; | 1740 | extern int acbsize; |
1741 | extern char aac_driver_version[]; | ||