Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 5 Feb 2009 19:36:14 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r188177 - head/sys/dev/pcn
Message-ID:  <200902051936.n15JaEBE036282@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: imp
Date: Thu Feb  5 19:36:14 2009
New Revision: 188177
URL: http://svn.freebsd.org/changeset/base/188177

Log:
  shutdown returns an int

Modified:
  head/sys/dev/pcn/if_pcn.c

Modified: head/sys/dev/pcn/if_pcn.c
==============================================================================
--- head/sys/dev/pcn/if_pcn.c	Thu Feb  5 19:33:35 2009	(r188176)
+++ head/sys/dev/pcn/if_pcn.c	Thu Feb  5 19:36:14 2009	(r188177)
@@ -144,7 +144,7 @@ static void pcn_init(void *);
 static void pcn_init_locked(struct pcn_softc *);
 static void pcn_stop(struct pcn_softc *);
 static void pcn_watchdog(struct ifnet *);
-static void pcn_shutdown(device_t);
+static int pcn_shutdown(device_t);
 static int pcn_ifmedia_upd(struct ifnet *);
 static void pcn_ifmedia_sts(struct ifnet *, struct ifmediareq *);
 
@@ -1458,8 +1458,7 @@ pcn_watchdog(ifp)
  * RX and TX lists.
  */
 static void
-pcn_stop(sc)
-	struct pcn_softc	*sc;
+pcn_stop(struct pcn_softc *sc)
 {
 	register int		i;
 	struct ifnet		*ifp;
@@ -1510,9 +1509,8 @@ pcn_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
-pcn_shutdown(dev)
-	device_t		dev;
+static int
+pcn_shutdown(device_t dev)
 {
 	struct pcn_softc	*sc;
 
@@ -1523,5 +1521,5 @@ pcn_shutdown(dev)
 	pcn_stop(sc);
 	PCN_UNLOCK(sc);
 
-	return;
+	return 0;
 }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200902051936.n15JaEBE036282>