diff options
author | 2006-12-31 14:27:17 +0000 | |
---|---|---|
committer | 2006-12-31 14:27:17 +0000 | |
commit | be2ee31a4f42c55430a8e91de2c8954d041e410c (patch) | |
tree | 146d170fa62dbcfd32d1deafb81f17522bba96c9 | |
parent | -A before -a; (diff) | |
download | wireguard-openbsd-be2ee31a4f42c55430a8e91de2c8954d041e410c.tar.xz wireguard-openbsd-be2ee31a4f42c55430a8e91de2c8954d041e410c.zip |
Bye bye unused acx_shutdown() we won't miss you.
-rw-r--r-- | sys/dev/ic/acx.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/sys/dev/ic/acx.c b/sys/dev/ic/acx.c index 6095233a573..8639272dd7b 100644 --- a/sys/dev/ic/acx.c +++ b/sys/dev/ic/acx.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acx.c,v 1.59 2006/12/30 22:43:01 claudio Exp $ */ +/* $OpenBSD: acx.c,v 1.60 2006/12/31 14:27:17 claudio Exp $ */ /* * Copyright (c) 2006 Jonathan Gray <jsg@openbsd.org> @@ -139,7 +139,6 @@ int acxdebug = 0; int acx_attach(struct acx_softc *); int acx_detach(void *); -void acx_shutdown(void *); int acx_init(struct ifnet *); int acx_stop(struct acx_softc *); @@ -375,14 +374,6 @@ acx_detach(void *xsc) return (0); } -void -acx_shutdown(void *arg) -{ - struct acx_softc *sc = arg; - - acx_stop(sc); -} - int acx_init(struct ifnet *ifp) { |