[PATCH 12/12] usb : Use mutex instead of semaphore in driver core

From: Dave Young
Date: Fri Dec 28 2007 - 20:16:45 EST


Signed-off-by: Dave Young <hidave.darkstar@xxxxxxxxx>

---
include/linux/usb.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff -upr linux/include/linux/usb.h linux.new/include/linux/usb.h
--- linux/include/linux/usb.h 2007-12-28 10:50:31.000000000 +0800
+++ linux.new/include/linux/usb.h 2007-12-28 10:52:31.000000000 +0800
@@ -441,9 +441,9 @@ extern struct usb_device *usb_get_dev(st
extern void usb_put_dev(struct usb_device *dev);

/* USB device locking */
-#define usb_lock_device(udev) down(&(udev)->dev.sem)
-#define usb_unlock_device(udev) up(&(udev)->dev.sem)
-#define usb_trylock_device(udev) down_trylock(&(udev)->dev.sem)
+#define usb_lock_device(udev) mutex_lock(&(udev)->dev.mutex)
+#define usb_unlock_device(udev) mutex_unlock(&(udev)->dev.mutex)
+#define usb_trylock_device(udev) mutex_trylock(&(udev)->dev.mutex)
extern int usb_lock_device_for_reset(struct usb_device *udev,
const struct usb_interface *iface);

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/