diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2007-05-20 00:52:27 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2007-05-20 00:52:27 +0000 |
commit | 2dbfbaea83b6cf3e9c5258c73e71f7f3d516701f (patch) | |
tree | ed41735ac73773a7c10db55f6b7d0e5d38a251a4 /sys/dev/cardbus/ehci_cardbus.c | |
parent | e368a7bf45c060b9b6d89d23467edd46afc11ad6 (diff) |
Convert ehci and ucom to rwlock.
Kill the usb specific lockmgr wrapper as nothing uses it now.
ok thib@
Diffstat (limited to 'sys/dev/cardbus/ehci_cardbus.c')
-rw-r--r-- | sys/dev/cardbus/ehci_cardbus.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/cardbus/ehci_cardbus.c b/sys/dev/cardbus/ehci_cardbus.c index c822a29397c..52933e46f57 100644 --- a/sys/dev/cardbus/ehci_cardbus.c +++ b/sys/dev/cardbus/ehci_cardbus.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ehci_cardbus.c,v 1.8 2006/10/12 16:35:52 grange Exp $ */ +/* $OpenBSD: ehci_cardbus.c,v 1.9 2007/05/20 00:52:26 jsg Exp $ */ /* $NetBSD: ehci_cardbus.c,v 1.6.6.3 2004/09/21 13:27:25 skrll Exp $ */ /* @@ -41,6 +41,7 @@ #include <sys/param.h> #include <sys/systm.h> #include <sys/kernel.h> +#include <sys/rwlock.h> #include <sys/device.h> #include <sys/proc.h> |