The patch titled UHCI: don't test the Short Packet Detect bit has been removed from the -mm tree. Its filename is uhci-dont-test-the-short-packet-detect-bit.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: UHCI: don't test the Short Packet Detect bit From: Alan Stern <stern@xxxxxxxxxxxxxxxxxxx> Apparently some UHCI controllers change the value of the Short Packet Detect (SPD) bit in the TD status word -- presumably when they receive a short packet. This patch (as759) changes uhci-hcd to avoid assuming that the bit is unchanged; in fact, the driver no longer looks at SPD at all. This fixes the second problem reported in Bugzilla #6752. Signed-off-by: Alan Stern <stern@xxxxxxxxxxxxxxxxxxx> Cc: Greg KH <greg@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/usb/host/uhci-q.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff -puN drivers/usb/host/uhci-q.c~uhci-dont-test-the-short-packet-detect-bit drivers/usb/host/uhci-q.c --- a/drivers/usb/host/uhci-q.c~uhci-dont-test-the-short-packet-detect-bit +++ a/drivers/usb/host/uhci-q.c @@ -943,7 +943,9 @@ static int uhci_result_common(struct uhc /* We received a short packet */ if (urb->transfer_flags & URB_SHORT_NOT_OK) ret = -EREMOTEIO; - else if (ctrlstat & TD_CTRL_SPD) + + /* Fixup needed only if this isn't the URB's last TD */ + else if (&td->list != urbp->td_list.prev) ret = 1; } _ Patches currently in -mm which might be from stern@xxxxxxxxxxxxxxxxxxx are origin.patch e100-disable-interrupts-at-boot.patch usb-hub-driver-improve-use-of-ifdef-fix.patch properly-unregister-reboot-notifier-in-case-of-failure-in-ehci-hcd.patch block-layer-early-detection-of-medium-not-present.patch scsi-core-and-sd-early-detection-of-medium-not-present.patch sd-early-detection-of-medium-not-present.patch scsi-early-detection-of-medium-not-present-updated.patch add-srcu-based-notifier-chains.patch srcu-report-out-of-memory-errors.patch srcu-report-out-of-memory-errors-fixlet.patch cpufreq-make-the-transition_notifier-chain-use-srcu.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html