patch-2.4.19 linux-2.4.19/drivers/net/sb1000.c
Next file: linux-2.4.19/drivers/net/sb1250-mac.c
Previous file: linux-2.4.19/drivers/net/rrunner.c
Back to the patch index
Back to the overall index
- Lines: 60
- Date:
Fri Aug 2 17:39:44 2002
- Orig file:
linux-2.4.18/drivers/net/sb1000.c
- Orig date:
Sun Sep 30 12:26:07 2001
diff -urN linux-2.4.18/drivers/net/sb1000.c linux-2.4.19/drivers/net/sb1000.c
@@ -204,7 +204,12 @@
/*
* Ok set it up.
*/
-
+ if (!request_region(ioaddr[0], 16, dev->name))
+ continue;
+ if (!request_region(ioaddr[1], 16, dev->name)) {
+ release_region(ioaddr[0], 16);
+ continue;
+ }
dev->base_addr = ioaddr[0];
/* rmem_end holds the second I/O address - fv */
@@ -262,9 +267,6 @@
/* Lock resources */
- request_region(ioaddr[0], 16, dev->name);
- request_region(ioaddr[1], 16, dev->name);
-
return 0;
}
}
@@ -403,7 +405,7 @@
}
timeout = jiffies + Sb1000TimeOutJiffies;
while (!(inb(ioaddr[1] + 6) & 0x40)) {
- if (jiffies >= timeout) {
+ if (time_after_eq(jiffies, timeout)) {
printk(KERN_WARNING "%s: sb1000_wait_for_ready timeout\n",
name);
return -ETIME;
@@ -421,7 +423,7 @@
timeout = jiffies + Sb1000TimeOutJiffies;
while (inb(ioaddr[1] + 6) & 0x80) {
- if (jiffies >= timeout) {
+ if (time_after_eq(jiffies, timeout)) {
printk(KERN_WARNING "%s: sb1000_wait_for_ready_clear timeout\n",
name);
return -ETIME;
@@ -429,7 +431,7 @@
}
timeout = jiffies + Sb1000TimeOutJiffies;
while (inb(ioaddr[1] + 6) & 0x40) {
- if (jiffies >= timeout) {
+ if (time_after_eq(jiffies, timeout)) {
printk(KERN_WARNING "%s: sb1000_wait_for_ready_clear timeout\n",
name);
return -ETIME;
@@ -962,8 +964,6 @@
/* rmem_end holds the second I/O address - fv */
ioaddr[1] = dev->rmem_end;
name = dev->name;
- request_region(ioaddr[0], SB1000_IO_EXTENT, "sb1000");
- request_region(ioaddr[1], SB1000_IO_EXTENT, "sb1000");
/* initialize sb1000 */
if ((status = sb1000_reset(ioaddr, name)))
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)