summaryrefslogtreecommitdiff
path: root/sys/dev/ic
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/ic')
-rw-r--r--sys/dev/ic/com.c41
-rw-r--r--sys/dev/ic/comvar.h3
-rw-r--r--sys/dev/ic/fxp.c28
-rw-r--r--sys/dev/ic/fxpvar.h3
4 files changed, 4 insertions, 71 deletions
diff --git a/sys/dev/ic/com.c b/sys/dev/ic/com.c
index 48511d60c88..9a8d0539344 100644
--- a/sys/dev/ic/com.c
+++ b/sys/dev/ic/com.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: com.c,v 1.112 2006/06/23 06:27:11 miod Exp $ */
+/* $OpenBSD: com.c,v 1.113 2007/05/08 20:33:07 deraadt Exp $ */
/* $NetBSD: com.c,v 1.82.4.1 1996/06/02 09:08:00 mrg Exp $ */
/*
@@ -200,45 +200,6 @@ comprobe1(iot, ioh)
#endif
int
-com_detach(self, flags)
- struct device *self;
- int flags;
-{
- struct com_softc *sc = (struct com_softc *)self;
- int maj, mn;
-
- sc->sc_swflags |= COM_SW_DEAD;
-
- /* locate the major number */
- for (maj = 0; maj < nchrdev; maj++)
- if (cdevsw[maj].d_open == comopen)
- break;
-
- /* Nuke the vnodes for any open instances. */
- mn = self->dv_unit;
- vdevgone(maj, mn, mn, VCHR);
-
- /* XXX a symbolic constant for the cua bit would be nicer. */
- mn |= 0x80;
- vdevgone(maj, mn, mn, VCHR);
-
- /* Detach and free the tty. */
- if (sc->sc_tty) {
- ttyfree(sc->sc_tty);
- }
-
- timeout_del(&sc->sc_dtr_tmo);
- timeout_del(&sc->sc_diag_tmo);
-#ifdef __HAVE_GENERIC_SOFT_INTERRUPTS
- softintr_disestablish(sc->sc_si);
-#else
- timeout_del(&sc->sc_comsoft_tmo);
-#endif
-
- return (0);
-}
-
-int
com_activate(self, act)
struct device *self;
enum devact act;
diff --git a/sys/dev/ic/comvar.h b/sys/dev/ic/comvar.h
index 9d061140c0e..be9262c9ea6 100644
--- a/sys/dev/ic/comvar.h
+++ b/sys/dev/ic/comvar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: comvar.h,v 1.40 2006/12/28 20:50:26 miod Exp $ */
+/* $OpenBSD: comvar.h,v 1.41 2007/05/08 20:33:07 deraadt Exp $ */
/* $NetBSD: comvar.h,v 1.5 1996/05/05 19:50:47 christos Exp $ */
/*
@@ -140,7 +140,6 @@ struct com_softc {
int comprobe1(bus_space_tag_t, bus_space_handle_t);
int comstop(struct tty *, int);
int comintr(void *);
-int com_detach(struct device *, int);
int com_activate(struct device *, enum devact);
void comdiag(void *);
diff --git a/sys/dev/ic/fxp.c b/sys/dev/ic/fxp.c
index 5c039d8ef06..aa456a14c7c 100644
--- a/sys/dev/ic/fxp.c
+++ b/sys/dev/ic/fxp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: fxp.c,v 1.85 2007/03/16 15:36:45 claudio Exp $ */
+/* $OpenBSD: fxp.c,v 1.86 2007/05/08 20:33:07 deraadt Exp $ */
/* $NetBSD: if_fxp.c,v 1.2 1997/06/05 02:01:55 thorpej Exp $ */
/*
@@ -553,32 +553,6 @@ fxp_attach(struct fxp_softc *sc, const char *intrstr)
return (ENOMEM);
}
-int
-fxp_detach(struct fxp_softc *sc)
-{
- struct ifnet *ifp = &sc->sc_arpcom.ac_if;
-
- /* Unhook our tick handler. */
- timeout_del(&sc->stats_update_to);
-
- /* Detach any PHYs we might have. */
- if (LIST_FIRST(&sc->sc_mii.mii_phys) != NULL)
- mii_detach(&sc->sc_mii, MII_PHY_ANY, MII_OFFSET_ANY);
-
- /* Delete any remaining media. */
- ifmedia_delete_instance(&sc->sc_mii.mii_media, IFM_INST_ANY);
-
- ether_ifdetach(ifp);
- if_detach(ifp);
-
- if (sc->sc_sdhook != NULL)
- shutdownhook_disestablish(sc->sc_sdhook);
- if (sc->sc_powerhook != NULL)
- powerhook_disestablish(sc->sc_powerhook);
-
- return (0);
-}
-
/*
* From NetBSD:
*
diff --git a/sys/dev/ic/fxpvar.h b/sys/dev/ic/fxpvar.h
index 319cee8781c..f802cf27faa 100644
--- a/sys/dev/ic/fxpvar.h
+++ b/sys/dev/ic/fxpvar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: fxpvar.h,v 1.25 2006/07/01 21:48:08 brad Exp $ */
+/* $OpenBSD: fxpvar.h,v 1.26 2007/05/08 20:33:07 deraadt Exp $ */
/* $NetBSD: if_fxpvar.h,v 1.1 1997/06/05 02:01:58 thorpej Exp $ */
/*
@@ -161,7 +161,6 @@ struct fxp_softc {
extern int fxp_intr(void *);
extern int fxp_attach(struct fxp_softc *, const char *);
-extern int fxp_detach(struct fxp_softc *);
#define FXP_RXMAP_GET(sc) ((sc)->sc_rxmaps[(sc)->sc_rxfree++])
#define FXP_RXMAP_PUT(sc,map) ((sc)->sc_rxmaps[--(sc)->sc_rxfree] = (map))