Merge git://git.infradead.org/~dwmw2/firmware-2.6
* git://git.infradead.org/~dwmw2/firmware-2.6: qla1280: Fix off-by-some error in firmware loading. Add README.AddingFirmware file. Basically telling people not to. firmware: Remove newly-added slicoss and sxg firmware images firmware/WHENCE: Add missing origin information for Ambassador atmsar11.fw ALSA: wavefront - Always use request_firmware() Remove fdump tool for av7110 firmware firmware: convert av7110 driver to request_firmware() Partially revert "V4L/DVB (9533): cx88: Add support for TurboSight TBS8910 DVB-S PCI card" Revert "fix modules_install via NFS" Add-add conflicts in firmware/WHENCE fixed manually
This commit is contained in:
@@ -1663,7 +1663,7 @@ qla1280_load_firmware_pio(struct scsi_qla_host *ha)
|
||||
|
||||
/* Load RISC code. */
|
||||
risc_address = ha->fwstart;
|
||||
fw_data = (const __le16 *)&fw->data[4];
|
||||
fw_data = (const __le16 *)&fw->data[6];
|
||||
risc_code_size = (fw->size - 6) / 2;
|
||||
|
||||
for (i = 0; i < risc_code_size; i++) {
|
||||
@@ -1722,7 +1722,7 @@ qla1280_load_firmware_dma(struct scsi_qla_host *ha)
|
||||
|
||||
/* Load RISC code. */
|
||||
risc_address = ha->fwstart;
|
||||
fw_data = (const __le16 *)&fw->data[4];
|
||||
fw_data = (const __le16 *)&fw->data[6];
|
||||
risc_code_size = (fw->size - 6) / 2;
|
||||
|
||||
dprintk(1, "%s: DMA RISC code (%i) words\n",
|
||||
|
Reference in New Issue
Block a user