On Tue, Jan 23, 2001 at 12:40:26AM +0100, Rasmus Andersen wrote: (This is another updated patch with the comments from the earlier mail still valid.) --- linux-ac10-clean/drivers/scsi/g_NCR5380.c Sat Jan 20 15:17:13 2001 +++ linux-ac10/drivers/scsi/g_NCR5380.c Tue Jan 23 21:05:44 2001 @@ -361,7 +361,7 @@ } else for(i=0; ports[i]; i++) { - if ((!check_region(ports[i], 16)) && (inb(ports[i]) == 0xff)) + if ((inb(ports[i]) == 0xff) && request_region(ports[i], +NCR5380_region_size, "ncr5380")) break; } if (ports[i]) { @@ -379,15 +379,10 @@ } else continue; } - - request_region(overrides[current_override].NCR5380_map_name, - NCR5380_region_size, "ncr5380"); #else - if(check_mem_region(overrides[current_override].NCR5380_map_name, - NCR5380_region_size)) + if(!request_mem_region(overrides[current_override].NCR5380_map_name, + NCR5380_region_size, "ncr5380")) continue; - request_mem_region(overrides[current_override].NCR5380_map_name, - NCR5380_region_size, "ncr5380"); #endif instance = scsi_register (tpnt, sizeof(struct NCR5380_hostdata)); if(instance == NULL) -- Regards, Rasmus([EMAIL PROTECTED]) That lowdown scoundrel deserves to be kicked to death by a jackass, and I'm just the one to do it. -A congressional candidate in Texas - To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to [EMAIL PROTECTED]