summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/linux/usb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/usb.h b/include/linux/usb.h
index 5e49e82c4368..4229eb74bd2c 100644
--- a/include/linux/usb.h
+++ b/include/linux/usb.h
@@ -1545,10 +1545,10 @@ typedef void (*usb_complete_t)(struct urb *);
1545struct urb { 1545struct urb {
1546 /* private: usb core and host controller only fields in the urb */ 1546 /* private: usb core and host controller only fields in the urb */
1547 struct kref kref; /* reference count of the URB */ 1547 struct kref kref; /* reference count of the URB */
1548 int unlinked; /* unlink error code */
1548 void *hcpriv; /* private data for host controller */ 1549 void *hcpriv; /* private data for host controller */
1549 atomic_t use_count; /* concurrent submissions counter */ 1550 atomic_t use_count; /* concurrent submissions counter */
1550 atomic_t reject; /* submissions will fail */ 1551 atomic_t reject; /* submissions will fail */
1551 int unlinked; /* unlink error code */
1552 1552
1553 /* public: documented fields in the urb that can be used by drivers */ 1553 /* public: documented fields in the urb that can be used by drivers */
1554 struct list_head urb_list; /* list head for use by the urb's 1554 struct list_head urb_list; /* list head for use by the urb's