patch-2.1.67 linux/drivers/net/mkiss.c
Next file: linux/drivers/net/myri_sbus.c
Previous file: linux/drivers/net/mace.c
Back to the patch index
Back to the overall index
- Lines: 39
- Date:
Sat Nov 29 10:33:19 1997
- Orig file:
v2.1.66/linux/drivers/net/mkiss.c
- Orig date:
Thu May 29 21:53:07 1997
diff -u --recursive --new-file v2.1.66/linux/drivers/net/mkiss.c linux/drivers/net/mkiss.c
@@ -489,9 +489,6 @@
ax->xleft = 0;
ax->flags &= (1 << AXF_INUSE); /* Clear ESCAPE & ERROR flags */
- /* Needed because address '0' is special */
- if (dev->pa_addr == 0)
- dev->pa_addr = ntohl(0xC0A80001);
dev->tbusy = 0;
dev->start = 1;
@@ -632,7 +629,12 @@
return;
mkiss = ax->mode;
- dev_close(ax->dev);
+ if (ax->dev->flags & IFF_UP)
+ {
+ dev_lock_wait();
+ dev_close(ax->dev);
+ dev_unlock_list();
+ }
tty->disc_data = 0;
ax->tty = NULL;
@@ -910,14 +912,6 @@
/* New-style flags. */
dev->flags = 0;
- dev->family = AF_INET;
-
-#ifdef CONFIG_INET
- dev->pa_addr = in_aton("192.168.0.1");
- dev->pa_brdaddr = in_aton("192.168.0.255");
- dev->pa_mask = in_aton("255.255.255.0");
- dev->pa_alen = 4;
-#endif
return 0;
}
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov