diff options
author | Matthew Dempsky <matthew@cvs.openbsd.org> | 2011-07-03 15:47:19 +0000 |
---|---|---|
committer | Matthew Dempsky <matthew@cvs.openbsd.org> | 2011-07-03 15:47:19 +0000 |
commit | cf51fdce33cceb21f045884bd8ac674d82bb7fa5 (patch) | |
tree | ad92547f0dfd94e3390a439ec1017fd1b84ca374 /sys/dev/radio.c | |
parent | 2c5191c2d7257540905a986a7260a29cf5424ae8 (diff) |
Remove config_activate() and DVACT_ACTIVATE. PCMCIA's the only thing
that's ever used it, and it's long since been changed to use
DVACT_{QUIESCE,SUSPEND,RESUME} instead.
ok deraadt@, dlg@; miod@ also agreed with this idea when I brought it
up a few weeks ago
Diffstat (limited to 'sys/dev/radio.c')
-rw-r--r-- | sys/dev/radio.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/dev/radio.c b/sys/dev/radio.c index 5c874820ee9..eb381706485 100644 --- a/sys/dev/radio.c +++ b/sys/dev/radio.c @@ -1,4 +1,4 @@ -/* $OpenBSD: radio.c,v 1.8 2009/10/13 19:33:16 pirofti Exp $ */ +/* $OpenBSD: radio.c,v 1.9 2011/07/03 15:47:16 matthew Exp $ */ /* $RuOBSD: radio.c,v 1.7 2001/12/04 06:03:05 tm Exp $ */ /* @@ -195,9 +195,6 @@ radioactivate(struct device *self, int act) struct radio_softc *sc = (struct radio_softc *)self; switch (act) { - case DVACT_ACTIVATE: - break; - case DVACT_DEACTIVATE: sc->sc_dying = 1; break; |