diff options
Diffstat (limited to 'drivers/usb/storage/usb.h')
-rw-r--r-- | drivers/usb/storage/usb.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/usb/storage/usb.h b/drivers/usb/storage/usb.h index 7259fd1f6b0d..009fb0953a56 100644 --- a/drivers/usb/storage/usb.h +++ b/drivers/usb/storage/usb.h | |||
@@ -49,6 +49,7 @@ | |||
49 | #include <linux/blkdev.h> | 49 | #include <linux/blkdev.h> |
50 | #include <linux/smp_lock.h> | 50 | #include <linux/smp_lock.h> |
51 | #include <linux/completion.h> | 51 | #include <linux/completion.h> |
52 | #include <linux/mutex.h> | ||
52 | #include <scsi/scsi_host.h> | 53 | #include <scsi/scsi_host.h> |
53 | 54 | ||
54 | struct us_data; | 55 | struct us_data; |
@@ -103,9 +104,9 @@ typedef void (*pm_hook)(struct us_data *, int); /* power management hook */ | |||
103 | struct us_data { | 104 | struct us_data { |
104 | /* The device we're working with | 105 | /* The device we're working with |
105 | * It's important to note: | 106 | * It's important to note: |
106 | * (o) you must hold dev_semaphore to change pusb_dev | 107 | * (o) you must hold dev_mutex to change pusb_dev |
107 | */ | 108 | */ |
108 | struct semaphore dev_semaphore; /* protect pusb_dev */ | 109 | struct mutex dev_mutex; /* protect pusb_dev */ |
109 | struct usb_device *pusb_dev; /* this usb_device */ | 110 | struct usb_device *pusb_dev; /* this usb_device */ |
110 | struct usb_interface *pusb_intf; /* this interface */ | 111 | struct usb_interface *pusb_intf; /* this interface */ |
111 | struct us_unusual_dev *unusual_dev; /* device-filter entry */ | 112 | struct us_unusual_dev *unusual_dev; /* device-filter entry */ |