diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2009-08-10 20:29:55 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2009-08-10 20:29:55 +0000 |
commit | 99a51eb26bb175ed50e8f772700c884309e5b15f (patch) | |
tree | 0b0aeae2aba24602ff1f07a64b8ccefefd6892f9 /sys/dev/ic/anvar.h | |
parent | b05b9b0a74f4f8c673615879849fea1280e9c764 (diff) |
More cases of shutdown hooks not needed after card is already stopped. In
these cases the xxstop function is a bit more complicated and has a flag of
some sort, but the use of that flag does not matter; DMA is already ceased
ok dlg
Diffstat (limited to 'sys/dev/ic/anvar.h')
-rw-r--r-- | sys/dev/ic/anvar.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/dev/ic/anvar.h b/sys/dev/ic/anvar.h index 2f7d8e9fc10..cabebbb7bc8 100644 --- a/sys/dev/ic/anvar.h +++ b/sys/dev/ic/anvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: anvar.h,v 1.21 2006/02/20 11:13:57 jsg Exp $ */ +/* $OpenBSD: anvar.h,v 1.22 2009/08/10 20:29:54 deraadt Exp $ */ /* $NetBSD: anvar.h,v 1.10 2005/02/27 00:27:00 perry Exp $ */ /* * Copyright (c) 1997, 1998, 1999 @@ -115,8 +115,6 @@ struct an_softc { int sc_enabled; int sc_invalid; int sc_attached; - void *sc_sdhook; - int sc_bap_id; int sc_bap_off; @@ -165,7 +163,6 @@ int an_attach(struct an_softc *); int an_detach(struct an_softc *); int an_activate(struct device *, enum devact); void an_power(int, void *); -void an_shutdown(void *); int an_intr(void *); int an_init(struct ifnet *); void an_stop(struct ifnet *, int); |