aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/aacraid/aachba.c
diff options
context:
space:
mode:
authorSalyzyn, Mark <mark_salyzyn@adaptec.com>2007-03-28 13:44:54 -0400
committerJames Bottomley <jejb@mulgrave.il.steeleye.com>2007-04-01 11:35:44 -0400
commita45c863f02c808107172b4b2975e1130c7da66d6 (patch)
tree74a7d4f3e6bee2a9c4911830e732304ab4964472 /drivers/scsi/aacraid/aachba.c
parent74ee9d52cf8b524edf8ae6222c8bfcc6df6f5954 (diff)
[SCSI] aacraid: fix print of Firmware Build Date and add TSID
The Adapter build date that is to be printed on instantiation was not displayed as a result of the supplemental adapter information structure not being in sync with the Firmware; the driver took an early test cycle version that had a miss-sized padded region at the head and the structure was not re-checked at the end of qualification. The Build Date was not a priority and is merely a cosmetic enhancement, and the wrong location for the start of the structure member would not induce any side-effect problems. We updated the structure to match the actual format, and added the TSID (Tech Support Identification) value print, should it be present, to the adapter instantiation announcements during driver load. This later enhancement should improve the relationship between Service folk & Tech Support if the printed value of the TSID found it's way into the circular file labeled G... Neither of these values show in sysfs (yet). Signed-off-by: Mark Salyzyn <aacraid@adaptec.com> Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi/aacraid/aachba.c')
-rw-r--r--drivers/scsi/aacraid/aachba.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/scsi/aacraid/aachba.c b/drivers/scsi/aacraid/aachba.c
index fc16fe0dfa84..31ac9f56cd1f 100644
--- a/drivers/scsi/aacraid/aachba.c
+++ b/drivers/scsi/aacraid/aachba.c
@@ -1194,6 +1194,12 @@ int aac_get_adapter_info(struct aac_dev* dev)
1194 printk(KERN_INFO "%s%d: serial %x\n", 1194 printk(KERN_INFO "%s%d: serial %x\n",
1195 dev->name, dev->id, 1195 dev->name, dev->id,
1196 le32_to_cpu(dev->adapter_info.serial[0])); 1196 le32_to_cpu(dev->adapter_info.serial[0]));
1197 if (dev->supplement_adapter_info.VpdInfo.Tsid[0]) {
1198 printk(KERN_INFO "%s%d: TSID %.*s\n",
1199 dev->name, dev->id,
1200 (int)sizeof(dev->supplement_adapter_info.VpdInfo.Tsid),
1201 dev->supplement_adapter_info.VpdInfo.Tsid);
1202 }
1197 } 1203 }
1198 1204
1199 dev->nondasd_support = 0; 1205 dev->nondasd_support = 0;