diff options
Diffstat (limited to 'sys/pci')
-rw-r--r-- | sys/pci/if_al.c | 13 | ||||
-rw-r--r-- | sys/pci/if_de.c | 5 | ||||
-rw-r--r-- | sys/pci/if_en_pci.c | 9 | ||||
-rw-r--r-- | sys/pci/if_fpa.c | 11 | ||||
-rw-r--r-- | sys/pci/if_rl.c | 13 | ||||
-rw-r--r-- | sys/pci/if_tx.c | 11 | ||||
-rw-r--r-- | sys/pci/if_vx_pci.c | 9 |
7 files changed, 39 insertions, 32 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; diff --git a/sys/pci/if_de.c b/sys/pci/if_de.c index c1a290f..45829b0 100644 --- a/sys/pci/if_de.c +++ b/sys/pci/if_de.c @@ -5126,7 +5126,7 @@ static struct pci_device dedevice = { COMPAT_PCI_DRIVER(de, dedevice); static void -tulip_shutdown(int howto, void *arg) +tulip_shutdown(void *arg, int howto) { tulip_softc_t * const sc = arg; TULIP_CSR_WRITE(sc, csr_busmode, TULIP_BUSMODE_SWRESET); @@ -5313,7 +5313,8 @@ tulip_pci_attach(pcici_t config_id, int unit) return; } } - at_shutdown(tulip_shutdown, sc, SHUTDOWN_POST_SYNC); + EVENTHANDLER_REGISTER(shutdown_post_sync, tulip_shutdown, sc, + SHUTDOWN_PRI_DEFAULT); #if defined(TULIP_USE_SOFTINTR) if (sc->tulip_unit > tulip_softintr_max_unit) tulip_softintr_max_unit = sc->tulip_unit; diff --git a/sys/pci/if_en_pci.c b/sys/pci/if_en_pci.c index 0f0e3a7..30d9e98 100644 --- a/sys/pci/if_en_pci.c +++ b/sys/pci/if_en_pci.c @@ -70,7 +70,7 @@ static void en_pci_attach __P((pcici_t, int)); static const char *en_pci_probe __P((pcici_t, pcidi_t)); -static void en_pci_shutdown __P((int, void *)); +static void en_pci_shutdown __P((void *, int)); /* * local structures @@ -266,7 +266,8 @@ int unit; * doing so could allow DMA to corrupt kernel memory during the * reboot before the driver initializes. */ - at_shutdown(en_pci_shutdown, scp, SHUTDOWN_POST_SYNC); + EVENTHANDLER_REGISTER(shutdown_post_sync, en_pci_shutdown, scp, + SHUTDOWN_PRI_DEFAULT); if (!pci_map_int(config_id, en_intr, (void *) sc, &net_imask)) { printf("%s: couldn't establish interrupt\n", sc->sc_dev.dv_xname); @@ -304,8 +305,8 @@ int unit; static void en_pci_shutdown( - int howto, - void *sc) + void *sc, + int howto) { struct en_pci_softc *psc = (struct en_pci_softc *)sc; diff --git a/sys/pci/if_fpa.c b/sys/pci/if_fpa.c index 839b939..57bc72d 100644 --- a/sys/pci/if_fpa.c +++ b/sys/pci/if_fpa.c @@ -21,7 +21,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_fpa.c,v 1.9 1999/04/24 20:14:00 peter Exp $ + * $Id: if_fpa.c,v 1.10 1999/05/09 17:06:54 peter Exp $ * */ @@ -128,7 +128,7 @@ pdq_pci_ifintr( #endif /* __FreeBSD && BSD */ #if defined(__FreeBSD__) -static void pdq_pci_shutdown(int, void *); +static void pdq_pci_shutdown(void *, int); /* * This is the PCI configuration support. Since the PDQ is available @@ -192,14 +192,15 @@ pdq_pci_attach( pdqs_pci[unit] = sc; pdq_ifattach(sc, pdq_pci_ifwatchdog); pci_map_int(config_id, pdq_pci_ifintr, (void*) sc, &net_imask); - at_shutdown(pdq_pci_shutdown, (void *) sc, SHUTDOWN_POST_SYNC); + EVENTHANDLER_REGISTER(shutdown_post_sync, pdq_pci_shutdown, sc, + SHUTDOWN_PRI_DEFAULT); } static void pdq_pci_shutdown( - int howto, - void *sc) + void *sc, + int howto) { pdq_hwreset(((pdq_softc_t *)sc)->sc_pdq); } diff --git a/sys/pci/if_rl.c b/sys/pci/if_rl.c index c7935ff..8fc7fbe 100644 --- a/sys/pci/if_rl.c +++ b/sys/pci/if_rl.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_rl.c,v 1.19 1999/07/06 19:23:28 des Exp $ + * $Id: if_rl.c,v 1.20 1999/07/22 20:56:49 wpaul Exp $ */ /* @@ -127,7 +127,7 @@ #ifndef lint static const char rcsid[] = - "$Id: if_rl.c,v 1.19 1999/07/06 19:23:28 des Exp $"; + "$Id: if_rl.c,v 1.20 1999/07/22 20:56:49 wpaul Exp $"; #endif /* @@ -177,7 +177,7 @@ static int rl_ioctl __P((struct ifnet *, u_long, caddr_t)); static void rl_init __P((void *)); static void rl_stop __P((struct rl_softc *)); static void rl_watchdog __P((struct ifnet *)); -static void rl_shutdown __P((int, void *)); +static void rl_shutdown __P((void *, int)); static int rl_ifmedia_upd __P((struct ifnet *)); static void rl_ifmedia_sts __P((struct ifnet *, struct ifmediareq *)); @@ -1234,7 +1234,8 @@ rl_attach(config_id, unit) #if NBPF > 0 bpfattach(ifp, DLT_EN10MB, sizeof(struct ether_header)); #endif - at_shutdown(rl_shutdown, sc, SHUTDOWN_POST_SYNC); + EVENTHANDLER_REGISTER(shutdown_post_sync, rl_shutdown, sc, + SHUTDOWN_PRI_DEFAULT); fail: splx(s); @@ -1925,9 +1926,9 @@ static void rl_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 rl_shutdown(howto, arg) - int howto; +static void rl_shutdown(arg, howto) void *arg; + int howto; { struct rl_softc *sc = (struct rl_softc *)arg; diff --git a/sys/pci/if_tx.c b/sys/pci/if_tx.c index 8899237..af694f6 100644 --- a/sys/pci/if_tx.c +++ b/sys/pci/if_tx.c @@ -1,5 +1,5 @@ /* $OpenBSD: if_tx.c,v 1.3 1998/10/10 04:30:09 jason Exp $ */ -/* $Id: if_tx.c,v 1.28 1999/07/03 20:17:05 peter Exp $ */ +/* $Id: if_tx.c,v 1.29 1999/07/06 19:23:30 des Exp $ */ /*- * Copyright (c) 1997 Semen Ustimenko (semen@iclub.nsu.ru) @@ -378,7 +378,7 @@ epic_shutdown( static const char* epic_freebsd_probe __P((pcici_t, pcidi_t)); static void epic_freebsd_attach __P((pcici_t, int)); -static void epic_shutdown __P((int, void *)); +static void epic_shutdown __P((void *, int)); /* Global variables */ static u_long epic_pci_count; @@ -546,7 +546,8 @@ epic_freebsd_attach( } /* Set shut down routine to stop DMA processes on reboot */ - at_shutdown(epic_shutdown, sc, SHUTDOWN_POST_SYNC); + EVENTHANDLER_REGISTER(shutdown_post_sync, epic_shutdown, sc, + SHUTDOWN_PRI_DEFAULT); /* Attach to if manager */ if_attach(ifp); @@ -565,8 +566,8 @@ epic_freebsd_attach( static void epic_shutdown( - int howto, - void *sc) + void *sc, + int howto) { epic_stop(sc); } diff --git a/sys/pci/if_vx_pci.c b/sys/pci/if_vx_pci.c index 2bad3b0..386ba42 100644 --- a/sys/pci/if_vx_pci.c +++ b/sys/pci/if_vx_pci.c @@ -44,14 +44,14 @@ #include <dev/vx/if_vxreg.h> -static void vx_pci_shutdown(int, void *); +static void vx_pci_shutdown(void *, int); static const char *vx_pci_probe(pcici_t, pcidi_t); static void vx_pci_attach(pcici_t, int unit); static void vx_pci_shutdown( - int howto, - void *sc) + void *sc, + int howto) { vxstop(sc); vxfree(sc); @@ -122,7 +122,8 @@ vx_pci_attach( * doing do could allow DMA to corrupt kernel memory during the * reboot before the driver initializes. */ - at_shutdown(vx_pci_shutdown, sc, SHUTDOWN_POST_SYNC); + EVENTHANDLER_REGISTER(shutdown_post_sync, vx_pci_shutdown, sc, + SHUTDOWN_PRI_DEFAULT); pci_map_int(config_id, vxintr, (void *) sc, &net_imask); } |