aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/usb/usb.c
diff options
context:
space:
mode:
authorJosef Karthauser <joe@FreeBSD.org>2002-04-01 16:53:29 +0000
committerJosef Karthauser <joe@FreeBSD.org>2002-04-01 16:53:29 +0000
commit167145ddc04637bc57092ebd8c71055418eed307 (patch)
tree80edef5aa79f1c4053411f587d0fd9b386e229b0 /sys/dev/usb/usb.c
parent0f657c164b6d260d4c6daf41a6bb8a55fec6a0a7 (diff)
Notes
Diffstat (limited to 'sys/dev/usb/usb.c')
-rw-r--r--sys/dev/usb/usb.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/usb.c b/sys/dev/usb/usb.c
index df2f6dc03ee2..d3f207a76391 100644
--- a/sys/dev/usb/usb.c
+++ b/sys/dev/usb/usb.c
@@ -1,4 +1,4 @@
-/* $NetBSD: usb.c,v 1.41 2000/03/16 00:46:38 augustss Exp $ */
+/* $NetBSD: usb.c,v 1.43 2000/03/29 18:24:53 augustss Exp $ */
/* $FreeBSD$ */
/*
@@ -268,7 +268,7 @@ USB_ATTACH(usb)
config_pending_incr();
#if defined(__NetBSD__) || defined(__OpenBSD__)
- kthread_create(usb_create_event_thread, sc);
+ usb_kthread_create(usb_create_event_thread, sc);
#endif
#if defined(__FreeBSD__)
@@ -293,7 +293,7 @@ usb_create_event_thread(void *arg)
{
struct usb_softc *sc = arg;
- if (kthread_create1(usb_event_thread, sc, &sc->sc_event_thread,
+ if (usb_kthread_create1(usb_event_thread, sc, &sc->sc_event_thread,
"%s", USBDEVNAME(sc->sc_dev))) {
printf("%s: unable to create event thread for\n",
USBDEVNAME(sc->sc_dev));