summaryrefslogtreecommitdiffstats
path: root/sys/dev/lnc/if_lnc.c
diff options
context:
space:
mode:
authorluigi <luigi@FreeBSD.org>2004-04-15 20:31:10 +0000
committerluigi <luigi@FreeBSD.org>2004-04-15 20:31:10 +0000
commit7d7307d2e1689754b4def7b381a46fd20919d442 (patch)
tree5724ee7f72224819d2453cd24c370e176d84429f /sys/dev/lnc/if_lnc.c
parentfa9222585e2ae94c9da702e4b6a4fd959416bd33 (diff)
downloadFreeBSD-src-7d7307d2e1689754b4def7b381a46fd20919d442.zip
FreeBSD-src-7d7307d2e1689754b4def7b381a46fd20919d442.tar.gz
Remove improper use of if_addrhead in device drivers to check
if the link-level address has been initialized already. The majority of modern drivers never does this and works fine, which makes me think that the check is totally unnecessary and a residue of cut&paste from other drivers. This change is done to simplify locking because now almost none of the drivers uses this field. The exceptions are "ct" "ctau" and "cx" where i am not sure if i can remove that part.
Diffstat (limited to 'sys/dev/lnc/if_lnc.c')
-rw-r--r--sys/dev/lnc/if_lnc.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/sys/dev/lnc/if_lnc.c b/sys/dev/lnc/if_lnc.c
index 52b5412..d3aabba 100644
--- a/sys/dev/lnc/if_lnc.c
+++ b/sys/dev/lnc/if_lnc.c
@@ -911,13 +911,6 @@ lnc_init(xsc)
int s, i;
char *lnc_mem;
- /* Check that interface has valid address */
-
- if (TAILQ_EMPTY(&sc->arpcom.ac_if.if_addrhead)) { /* XXX unlikely */
-printf("XXX no address?\n");
- return;
- }
-
/* Shut down interface */
s = splimp();
OpenPOWER on IntegriCloud