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/pci | |
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/pci')
-rw-r--r-- | sys/dev/pci/ehci_pci.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/pci/ehci_pci.c b/sys/dev/pci/ehci_pci.c index 59665d44113..c2bc3b83615 100644 --- a/sys/dev/pci/ehci_pci.c +++ b/sys/dev/pci/ehci_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ehci_pci.c,v 1.10 2006/08/25 04:17:00 pascoe Exp $ */ +/* $OpenBSD: ehci_pci.c,v 1.11 2007/05/20 00:52:26 jsg Exp $ */ /* $NetBSD: ehci_pci.c,v 1.15 2004/04/23 21:13:06 itojun Exp $ */ /* @@ -40,6 +40,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> #include <sys/queue.h> |