Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 248792
b: refs/heads/master
c: 64b3c30
h: refs/heads/master
v: v3
  • Loading branch information
Sebastian Andrzej Siewior authored and Sarah Sharp committed May 2, 2011
1 parent aee591b commit 759c484
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 9dee9a213cb90fdc13118ab221f65c9fa6944f7a
refs/heads/master: 64b3c304bed25388fed48dbdc098dfcad7063d9c
2 changes: 1 addition & 1 deletion trunk/drivers/usb/core/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ static void usb_parse_ss_endpoint_companion(struct device *ddev, int cfgno,
max_tx = ep->desc.wMaxPacketSize * (desc->bMaxBurst + 1);
else
max_tx = 999999;
if (desc->wBytesPerInterval > max_tx) {
if (le16_to_cpu(desc->wBytesPerInterval) > max_tx) {
dev_warn(ddev, "%s endpoint with wBytesPerInterval of %d in "
"config %d interface %d altsetting %d ep %d: "
"setting to %d\n",
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/usb/host/xhci-mem.c
Original file line number Diff line number Diff line change
Expand Up @@ -1130,7 +1130,7 @@ static u32 xhci_get_max_esit_payload(struct xhci_hcd *xhci,
return 0;

if (udev->speed == USB_SPEED_SUPER)
return ep->ss_ep_comp.wBytesPerInterval;
return le16_to_cpu(ep->ss_ep_comp.wBytesPerInterval);

max_packet = GET_MAX_PACKET(le16_to_cpu(ep->desc.wMaxPacketSize));
max_burst = (le16_to_cpu(ep->desc.wMaxPacketSize) & 0x1800) >> 11;
Expand Down
2 changes: 1 addition & 1 deletion trunk/include/linux/usb/ch9.h
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ struct usb_ss_ep_comp_descriptor {

__u8 bMaxBurst;
__u8 bmAttributes;
__u16 wBytesPerInterval;
__le16 wBytesPerInterval;
} __attribute__ ((packed));

#define USB_DT_SS_EP_COMP_SIZE 6
Expand Down

0 comments on commit 759c484

Please sign in to comment.