Commit 7ab267d4 authored by Jeff Garzik's avatar Jeff Garzik Committed by Jeff Garzik

fix warning in drivers/net/appletalk/cops.c

drivers/net/appletalk/cops.c: In function ‘cops_reset’:
drivers/net/appletalk/cops.c:507: warning: comparison of distinct pointer
types lacks a cast

by replacing hand-woven msleep() with call to msleep()
Signed-off-by: default avatarJeff Garzik <jgarzik@redhat.com>
parent 97ac8cae
...@@ -499,19 +499,13 @@ static void cops_reset(struct net_device *dev, int sleep) ...@@ -499,19 +499,13 @@ static void cops_reset(struct net_device *dev, int sleep)
{ {
outb(0, ioaddr+DAYNA_RESET); /* Assert the reset port */ outb(0, ioaddr+DAYNA_RESET); /* Assert the reset port */
inb(ioaddr+DAYNA_RESET); /* Clear the reset */ inb(ioaddr+DAYNA_RESET); /* Clear the reset */
if(sleep) if (sleep)
{ msleep(333);
long snap=jiffies;
/* Let card finish initializing, about 1/3 second */
while (time_before(jiffies, snap + HZ/3))
schedule();
}
else else
mdelay(333); mdelay(333);
} }
netif_wake_queue(dev); netif_wake_queue(dev);
return;
} }
static void cops_load (struct net_device *dev) static void cops_load (struct net_device *dev)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment