Messages in this thread Patch in this message |  | | Date | Tue, 23 Jan 2001 23:42:30 +0100 | From | Rasmus Andersen <> | Subject | [PATCH] drives/scsi/tmscsim.c: check_region -> request_region (241p9) |
| |
(Forgot to cc lk. If anyone have comments please cc garloff@suse.de. Thanks.)
----- Forwarded message from Rasmus Andersen <rasmus@jaquet.dk> -----
Hi.
The following patch makes drives/scsi/tmscsim.c use request_region instead of check_region+request_region. It applies cleanly against ac10 and with a little fuzz against 241p9.
Please comment.
--- linux-ac10-clean/drivers/scsi/tmscsim.c Sat Jan 20 15:17:13 2001 +++ linux-ac10/drivers/scsi/tmscsim.c Sat Jan 20 23:17:29 2001 @@ -2088,13 +2088,11 @@ pACB = (PACB) psh->hostdata; - if (check_region (io_port, psh->n_io_port)) + if (!request_region (io_port, psh->n_io_port, "tmscsim")) { printk(KERN_ERR "DC390: register IO ports error!\n"); return( -1 ); } - else - request_region (io_port, psh->n_io_port, "tmscsim"); DC390_read8_ (INT_Status, io_port); /* Reset Pending INT */ ----- End forwarded message ----- -- Rasmus(rasmus@jaquet.dk)
"The obvious mathematical breakthrough would be development of an easy way to factor large prime numbers." -- Bill Gates, The Road Ahead, Viking Penguin (1995)
- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/
|  |