diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2010-08-27 17:08:02 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2010-08-27 17:08:02 +0000 |
commit | e8ad753752758c2cfa85f8c08dd41f982b096c56 (patch) | |
tree | 8bb7235dfdb22a9f3ab77b7a8eb911512da40831 /sys/dev/ic/acx.c | |
parent | c766b87a799f8e51a14cd8938bbceb1dfe2b3d80 (diff) |
remove the unused if_init callback in struct ifnet
ok deraadt@ henning@ claudio@
Diffstat (limited to 'sys/dev/ic/acx.c')
-rw-r--r-- | sys/dev/ic/acx.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/ic/acx.c b/sys/dev/ic/acx.c index cba71b01ec1..ae199d815ac 100644 --- a/sys/dev/ic/acx.c +++ b/sys/dev/ic/acx.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acx.c,v 1.96 2010/08/07 03:50:01 krw Exp $ */ +/* $OpenBSD: acx.c,v 1.97 2010/08/27 17:08:00 jsg Exp $ */ /* * Copyright (c) 2006 Jonathan Gray <jsg@openbsd.org> @@ -289,7 +289,6 @@ acx_attach(struct acx_softc *sc) } ifp->if_softc = sc; - ifp->if_init = acx_init; ifp->if_ioctl = acx_ioctl; ifp->if_start = acx_start; ifp->if_watchdog = acx_watchdog; |