diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2013-08-08 09:44:23 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2013-08-08 09:44:23 +0000 |
commit | 58b9b6cd0ada826a1d88b54d2d0ab6675d9ffe2c (patch) | |
tree | 444b82248856f70ef214c49a5162bd70bbe7f753 /sys/dev/usb/usb_subr.c | |
parent | f946ca01f76d5bf2cb1b56888587c9a119062b0e (diff) |
These functions should only used in the usb-autoconf glue, do not expose
them.
Diffstat (limited to 'sys/dev/usb/usb_subr.c')
-rw-r--r-- | sys/dev/usb/usb_subr.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/dev/usb/usb_subr.c b/sys/dev/usb/usb_subr.c index deaa56c05ea..8217a8ad090 100644 --- a/sys/dev/usb/usb_subr.c +++ b/sys/dev/usb/usb_subr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: usb_subr.c,v 1.90 2013/08/08 09:37:02 mpi Exp $ */ +/* $OpenBSD: usb_subr.c,v 1.91 2013/08/08 09:44:22 mpi Exp $ */ /* $NetBSD: usb_subr.c,v 1.103 2003/01/10 11:19:13 augustss Exp $ */ /* $FreeBSD: src/sys/dev/usb/usb_subr.c,v 1.18 1999/11/17 22:33:47 n_hibma Exp $ */ @@ -71,6 +71,9 @@ void usbd_free_iface_data(struct usbd_device *, int); usbd_status usbd_probe_and_attach(struct device *, struct usbd_device *, int, int); +int usbd_printBCD(char *cp, size_t len, int bcd); +void usb_free_device(struct usbd_device *, struct usbd_port *); + #ifdef USBVERBOSE #include <dev/usb/usbdevs_data.h> #endif /* USBVERBOSE */ |