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/usb/usb_port.h | |
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/usb/usb_port.h')
-rw-r--r-- | sys/dev/usb/usb_port.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/dev/usb/usb_port.h b/sys/dev/usb/usb_port.h index 13e4dec00fe..cc4f06aa508 100644 --- a/sys/dev/usb/usb_port.h +++ b/sys/dev/usb/usb_port.h @@ -1,4 +1,4 @@ -/* $OpenBSD: usb_port.h,v 1.62 2006/09/18 10:55:51 dlg Exp $ */ +/* $OpenBSD: usb_port.h,v 1.63 2007/05/20 00:52:26 jsg Exp $ */ /* $NetBSD: usb_port.h,v 1.62 2003/02/15 18:33:30 augustss Exp $ */ /* $FreeBSD: src/sys/dev/usb/usb_port.h,v 1.21 1999/11/17 22:33:47 n_hibma Exp $ */ @@ -162,8 +162,6 @@ typedef struct timeout usb_callout_t; #define usb_callout_pending(h) timeout_pending(&(h)) #define usb_uncallout(h, f, d) timeout_del(&(h)) -#define usb_lockmgr(l, f, sl, p) lockmgr((l), (f), (sl)) - #define USB_DECLARE_DRIVER_CLASS(dname, devclass) \ int __CONCAT(dname,_match)(struct device *, void *, void *); \ void __CONCAT(dname,_attach)(struct device *, struct device *, void *); \ |