diff options
author | Michael Knudsen <mk@cvs.openbsd.org> | 2007-06-06 19:25:51 +0000 |
---|---|---|
committer | Michael Knudsen <mk@cvs.openbsd.org> | 2007-06-06 19:25:51 +0000 |
commit | 500a578db75cf89083df2a55d0595219cd097bef (patch) | |
tree | 48c3b40f7b38744d9870e80ecf42d0d0e3168f82 /sys/dev/usb/uhub.c | |
parent | 44d09381d8aa8071e7d5013a443d408bec5fb7d6 (diff) |
Mechanical removal of USBBASEDEVICE. No binary change.
Tested by thib and myself.
ok mbalmer jsg
Diffstat (limited to 'sys/dev/usb/uhub.c')
-rw-r--r-- | sys/dev/usb/uhub.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/uhub.c b/sys/dev/usb/uhub.c index f47e0908207..cfec381f835 100644 --- a/sys/dev/usb/uhub.c +++ b/sys/dev/usb/uhub.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uhub.c,v 1.42 2007/06/06 03:23:49 jsg Exp $ */ +/* $OpenBSD: uhub.c,v 1.43 2007/06/06 19:25:49 mk Exp $ */ /* $NetBSD: uhub.c,v 1.64 2003/02/08 03:32:51 ichiro Exp $ */ /* $FreeBSD: src/sys/dev/usb/uhub.c,v 1.18 1999/11/17 22:33:43 n_hibma Exp $ */ @@ -69,7 +69,7 @@ int uhubdebug = 0; #endif struct uhub_softc { - USBBASEDEVICE sc_dev; /* base device */ + struct device sc_dev; /* base device */ usbd_device_handle sc_hub; /* USB device */ usbd_pipe_handle sc_ipipe; /* interrupt pipe */ u_int8_t sc_status[1]; /* XXX more ports */ |