patch-2.4.4 linux/drivers/scsi/fastlane.c
Next file: linux/drivers/scsi/fdomain.c
Previous file: linux/drivers/scsi/dmx3191d.c
Back to the patch index
Back to the overall index
- Lines: 62
- Date:
Wed Apr 11 19:02:37 2001
- Orig file:
v2.4.3/linux/drivers/scsi/fastlane.c
- Orig date:
Fri Feb 9 11:30:23 2001
diff -u --recursive --new-file v2.4.3/linux/drivers/scsi/fastlane.c linux/drivers/scsi/fastlane.c
@@ -76,7 +76,7 @@
volatile unsigned char cmd_buffer[16];
/* This is where all commands are put
- * before they are transfered to the ESP chip
+ * before they are transferred to the ESP chip
* via PIO.
*/
@@ -96,9 +96,7 @@
* this ID value. Fortunately only Fastlane maps in Z3 space
*/
if (board < 0x1000000) {
- release_mem_region(board+FASTLANE_ESP_ADDR,
- sizeof(struct ESP_regs));
- return 0;
+ goto err_release;
}
esp = esp_allocate(tpnt, (void *)board+FASTLANE_ESP_ADDR);
@@ -146,10 +144,7 @@
if(!address){
printk("Could not remap Fastlane controller memory!");
- scsi_unregister (esp->ehost);
- release_mem_region(board+FASTLANE_ESP_ADDR,
- sizeof(struct ESP_regs));
- return 0;
+ goto err_unregister;
}
@@ -171,8 +166,11 @@
esp->irq = IRQ_AMIGA_PORTS;
esp->slot = board+FASTLANE_ESP_ADDR;
- request_irq(IRQ_AMIGA_PORTS, esp_intr, SA_SHIRQ,
- "Fastlane SCSI", esp_intr);
+ if (request_irq(IRQ_AMIGA_PORTS, esp_intr, SA_SHIRQ,
+ "Fastlane SCSI", esp_intr)) {
+ printk(KERN_WARNING "Fastlane: Could not get IRQ%d, aborting.\n", IRQ_AMIGA_PORTS);
+ goto err_unmap;
+ }
/* Controller ID */
esp->scsi_id = 7;
@@ -188,6 +186,15 @@
return esps_in_use;
}
}
+ return 0;
+
+ err_unmap:
+ iounmap((void *)address);
+ err_unregister:
+ scsi_unregister (esp->ehost);
+ err_release:
+ release_mem_region(z->resource.start+FASTLANE_ESP_ADDR,
+ sizeof(struct ESP_regs));
return 0;
}
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)