diff options
author | 1999-08-31 07:42:50 +0000 | |
---|---|---|
committer | 1999-08-31 07:42:50 +0000 | |
commit | 3a4e8ece38d49a24437c137f1d7ae58201fa2e28 (patch) | |
tree | 36a4069aa56e87540042df5ff909d53b53bc3f87 /sys/dev/usb/uhub.c | |
parent | start amd in /etc/amd; so that if ${amd_master} contains map names, and we (diff) | |
download | wireguard-openbsd-3a4e8ece38d49a24437c137f1d7ae58201fa2e28.tar.xz wireguard-openbsd-3a4e8ece38d49a24437c137f1d7ae58201fa2e28.zip |
sync with NetBSD;
struct device->bdevice.
Diffstat (limited to 'sys/dev/usb/uhub.c')
-rw-r--r-- | sys/dev/usb/uhub.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/uhub.c b/sys/dev/usb/uhub.c index fd80037ef55..0d0876b51fa 100644 --- a/sys/dev/usb/uhub.c +++ b/sys/dev/usb/uhub.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uhub.c,v 1.3 1999/08/27 09:00:29 fgsch Exp $ */ +/* $OpenBSD: uhub.c,v 1.4 1999/08/31 07:42:50 fgsch Exp $ */ /* $NetBSD: uhub.c,v 1.23 1999/08/23 22:55:14 augustss Exp $ */ /* @@ -488,7 +488,7 @@ uhub_disconnect_port(up) int uhub_activate(self, act) - struct device *self; + bdevice *self; enum devact act; { switch (act) { @@ -508,7 +508,7 @@ uhub_activate(self, act) */ int uhub_detach(self, flags) - struct device *self; + bdevice *self; int flags; { struct uhub_softc *sc = (struct uhub_softc *)self; |