diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-04-02 01:43:17 -0400 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2009-04-03 10:24:42 -0400 |
commit | 1bfa11db712cbf4af1ae037cd25fd4f781f0c215 (patch) | |
tree | 83a023e0e07a1b7e85b0e764740d120047b6ace3 /drivers/scsi/qla1280.h | |
parent | fd6e1c14b73dbab89cb76af895d5612e4a8b5522 (diff) |
[SCSI] qla1280: use request_firmware
Firmware blob is little endian looks like this...
unsigned char Version1
unsigned char Version2
unsigned char Version3
unsigned char Padding
unsigned short start_address
unsigned short data
Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/scsi/qla1280.h')
-rw-r--r-- | drivers/scsi/qla1280.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/scsi/qla1280.h b/drivers/scsi/qla1280.h index ff2c363ead26..d7c44b8d2b4f 100644 --- a/drivers/scsi/qla1280.h +++ b/drivers/scsi/qla1280.h | |||
@@ -1069,6 +1069,12 @@ struct scsi_qla_host { | |||
1069 | 1069 | ||
1070 | struct nvram nvram; | 1070 | struct nvram nvram; |
1071 | int nvram_valid; | 1071 | int nvram_valid; |
1072 | |||
1073 | /* Firmware Info */ | ||
1074 | unsigned short fwstart; /* start address for F/W */ | ||
1075 | unsigned char fwver1; /* F/W version first char */ | ||
1076 | unsigned char fwver2; /* F/W version second char */ | ||
1077 | unsigned char fwver3; /* F/W version third char */ | ||
1072 | }; | 1078 | }; |
1073 | 1079 | ||
1074 | #endif /* _QLA1280_H */ | 1080 | #endif /* _QLA1280_H */ |