remove unused smc91cxx_activate()
authorjsg <jsg@openbsd.org>
Mon, 15 Aug 2022 01:59:00 +0000 (01:59 +0000)
committerjsg <jsg@openbsd.org>
Mon, 15 Aug 2022 01:59:00 +0000 (01:59 +0000)
ok miod@

sys/dev/ic/smc91cxx.c
sys/dev/ic/smc91cxxvar.h

index ae67e89..814c1e3 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: smc91cxx.c,v 1.51 2022/01/09 05:42:42 jsg Exp $       */
+/*     $OpenBSD: smc91cxx.c,v 1.52 2022/08/15 01:59:00 jsg Exp $       */
 /*     $NetBSD: smc91cxx.c,v 1.11 1998/08/08 23:51:41 mycroft Exp $    */
 
 /*-
@@ -1140,26 +1140,6 @@ smc91cxx_disable(struct smc91cxx_softc *sc)
        }
 }
 
-int
-smc91cxx_activate(struct device *self, int act)
-{
-#if 0
-       struct smc91cxx_softc *sc = (struct smc91cxx_softc *)self;
-#endif
-       int rv = 0, s;
-
-       s = splnet();
-       switch (act) {
-       case DVACT_DEACTIVATE:
-#if 0
-               if_deactivate(&sc->sc_ic.ic_if);
-#endif
-               break;
-       }
-       splx(s);
-       return(rv);
-}
-
 int
 smc91cxx_detach(struct device *self, int flags)
 {
index f349120..b208185 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: smc91cxxvar.h,v 1.8 2009/10/13 19:33:16 pirofti Exp $ */
+/*     $OpenBSD: smc91cxxvar.h,v 1.9 2022/08/15 01:59:00 jsg Exp $     */
 /*     $NetBSD: smc91cxxvar.h,v 1.4 1997/10/15 05:56:13 explorer Exp $ */
 
 /*-
@@ -65,5 +65,4 @@ void  smc91cxx_init(struct smc91cxx_softc *);
 void   smc91cxx_stop(struct smc91cxx_softc *);
 int    smc91cxx_enable(struct smc91cxx_softc *);
 void   smc91cxx_disable(struct smc91cxx_softc *);
-int    smc91cxx_activate(struct device *, int);
 int    smc91cxx_detach(struct device *, int);