aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/usb/usb_port.h
diff options
context:
space:
mode:
authorJosef Karthauser <joe@FreeBSD.org>2002-01-24 20:21:17 +0000
committerJosef Karthauser <joe@FreeBSD.org>2002-01-24 20:21:17 +0000
commit46d0cbc2cd60a19a23ea41ecbb2f403b9878f727 (patch)
tree0b077d02ee9aeeb719297d2ce3249afe629deee6 /sys/dev/usb/usb_port.h
parent0f14df92a14343dc06298cbe385932b38915022f (diff)
downloadsrc-46d0cbc2cd60a19a23ea41ecbb2f403b9878f727.tar.gz
src-46d0cbc2cd60a19a23ea41ecbb2f403b9878f727.zip
Merge from NetBSD:
usb.c: -r1.35 - 1.37 usb_port.h: tiny bit of -r1.26 + an extra bit in the FreeBSD config section. revision 1.37 date: 2000/01/24 18:35:51; author: thorpej; state: Exp; lines: +7 -1 Use config_pending. ---------------------------- revision 1.36 date: 1999/12/22 23:54:09; author: augustss; state: Exp; lines: +2 -2 Use the flags `locator' to govern if devices are detected early or late during cold boot. ---------------------------- revision 1.35 date: 1999/12/20 02:12:23; author: augustss; state: Exp; lines: +8 -5 Make sure tsleep() is not called during cold boot.
Notes
Notes: svn path=/head/; revision=89764
Diffstat (limited to 'sys/dev/usb/usb_port.h')
-rw-r--r--sys/dev/usb/usb_port.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/sys/dev/usb/usb_port.h b/sys/dev/usb/usb_port.h
index 21cb9868c465..3f7842250bc9 100644
--- a/sys/dev/usb/usb_port.h
+++ b/sys/dev/usb/usb_port.h
@@ -177,6 +177,9 @@ typedef struct proc *usb_proc_ptr;
#define kthread_create1 kthread_create
#define kthread_create kthread_create_deferred
+#define config_pending_incr()
+#define config_pending_decr()
+
#define usbpoll usbselect
#define uhidpoll uhidselect
#define ugenpoll ugenselect
@@ -303,6 +306,9 @@ typedef struct thread *usb_proc_ptr;
#define kthread_create1(f, s, p, a0, a1) \
kthread_create((f), (s), (p), RFHIGHPID, (a0), (a1))
+#define config_pending_incr()
+#define config_pending_decr()
+
#define usb_timeout(f, d, t, h) ((h) = timeout((f), (d), (t)))
#define usb_untimeout(f, d, h) untimeout((f), (d), (h))