summaryrefslogtreecommitdiffstats
path: root/sys/pci/if_al.c
diff options
context:
space:
mode:
authormsmith <msmith@FreeBSD.org>1999-08-21 06:24:40 +0000
committermsmith <msmith@FreeBSD.org>1999-08-21 06:24:40 +0000
commitb51f157bff8b959d943b0836a1c57f065b9318d5 (patch)
treee447ab34080a4d202ed41db3476df31ef1f56a50 /sys/pci/if_al.c
parenta753b272ec1066c690e1ba83c8780af55e3a6c78 (diff)
downloadFreeBSD-src-b51f157bff8b959d943b0836a1c57f065b9318d5.zip
FreeBSD-src-b51f157bff8b959d943b0836a1c57f065b9318d5.tar.gz
Implement a new generic mechanism for attaching handler functions to
events, in order to pave the way for removing a number of the ad-hoc implementations currently in use. Retire the at_shutdown family of functions and replace them with new event handler lists. Rework kern_shutdown.c to take greater advantage of the use of event handlers. Reviewed by: green
Diffstat (limited to 'sys/pci/if_al.c')
-rw-r--r--sys/pci/if_al.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/sys/pci/if_al.c b/sys/pci/if_al.c
index ab299eb..ba36544 100644
--- a/sys/pci/if_al.c
+++ b/sys/pci/if_al.c
@@ -29,7 +29,7 @@
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: if_al.c,v 1.5 1999/07/02 04:17:12 peter Exp $
+ * $Id: if_al.c,v 1.6 1999/07/06 19:23:22 des Exp $
*/
/*
@@ -90,7 +90,7 @@
#ifndef lint
static const char rcsid[] =
- "$Id: if_al.c,v 1.5 1999/07/02 04:17:12 peter Exp $";
+ "$Id: if_al.c,v 1.6 1999/07/06 19:23:22 des Exp $";
#endif
/*
@@ -137,7 +137,7 @@ static int al_ioctl __P((struct ifnet *, u_long, caddr_t));
static void al_init __P((void *));
static void al_stop __P((struct al_softc *));
static void al_watchdog __P((struct ifnet *));
-static void al_shutdown __P((int, void *));
+static void al_shutdown __P((void *, int));
static int al_ifmedia_upd __P((struct ifnet *));
static void al_ifmedia_sts __P((struct ifnet *, struct ifmediareq *));
@@ -1069,7 +1069,8 @@ al_attach(config_id, unit)
#if NBPF > 0
bpfattach(ifp, DLT_EN10MB, sizeof(struct ether_header));
#endif
- at_shutdown(al_shutdown, sc, SHUTDOWN_POST_SYNC);
+ EVENTHANDLER_REGISTER(shutdown_post_sync, al_shutdown, sc,
+ SHUTDOWN_PRI_DEFAULT);
fail:
splx(s);
@@ -1976,9 +1977,9 @@ static void al_stop(sc)
* Stop all chip I/O so that the kernel's probe routines don't
* get confused by errant DMAs when rebooting.
*/
-static void al_shutdown(howto, arg)
- int howto;
+static void al_shutdown(arg, howto)
void *arg;
+ int howto;
{
struct al_softc *sc = (struct al_softc *)arg;
OpenPOWER on IntegriCloud