diff options
Diffstat (limited to 'sys/dev/usb/ugen.c')
-rw-r--r-- | sys/dev/usb/ugen.c | 19 |
1 files changed, 2 insertions, 17 deletions
diff --git a/sys/dev/usb/ugen.c b/sys/dev/usb/ugen.c index fdea5456cf2..c09747e18df 100644 --- a/sys/dev/usb/ugen.c +++ b/sys/dev/usb/ugen.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ugen.c,v 1.78 2014/07/12 18:48:52 tedu Exp $ */ +/* $OpenBSD: ugen.c,v 1.79 2014/07/12 20:26:33 mpi Exp $ */ /* $NetBSD: ugen.c,v 1.63 2002/11/26 18:49:48 christos Exp $ */ /* $FreeBSD: src/sys/dev/usb/ugen.c,v 1.26 1999/11/17 22:33:41 n_hibma Exp $ */ @@ -121,15 +121,13 @@ int ugen_get_alt_index(struct ugen_softc *sc, int ifaceidx); int ugen_match(struct device *, void *, void *); void ugen_attach(struct device *, struct device *, void *); int ugen_detach(struct device *, int); -int ugen_activate(struct device *, int); struct cfdriver ugen_cd = { NULL, "ugen", DV_DULL }; const struct cfattach ugen_ca = { - sizeof(struct ugen_softc), ugen_match, ugen_attach, ugen_detach, - ugen_activate, + sizeof(struct ugen_softc), ugen_match, ugen_attach, ugen_detach }; int @@ -738,19 +736,6 @@ ugenwrite(dev_t dev, struct uio *uio, int flag) } int -ugen_activate(struct device *self, int act) -{ - struct ugen_softc *sc = (struct ugen_softc *)self; - - switch (act) { - case DVACT_DEACTIVATE: - usbd_deactivate(sc->sc_udev); - break; - } - return (0); -} - -int ugen_detach(struct device *self, int flags) { struct ugen_softc *sc = (struct ugen_softc *)self; |