From: Alan Stern Date: Tue, 31 Jan 2006 15:02:55 +0000 (-0500) Subject: [PATCH] uhci-hcd: fix mistaken usage of list_prepare_entry X-Git-Tag: accepted/tizen/common/20141203.182822~39434^2~36 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1393adb2ebb00a2cd54b293cd7ee71e3376f4e9f;p=platform%2Fkernel%2Flinux-arm64.git [PATCH] uhci-hcd: fix mistaken usage of list_prepare_entry A recent update to the uhci-hcd driver invoked the list_prepare_entry macro incorrectly. This patch (as646) corrects it. Signed-off-by: Alan Stern Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/host/uhci-q.c b/drivers/usb/host/uhci-q.c index 0c1b120..5d2f957 100644 --- a/drivers/usb/host/uhci-q.c +++ b/drivers/usb/host/uhci-q.c @@ -259,7 +259,7 @@ static void uhci_fixup_toggles(struct uhci_qh *qh, int skip_first) /* Fix up the toggle for the URBs in the queue. Normally this * loop won't run more than once: When an error or short transfer * occurs, the queue usually gets emptied. */ - list_prepare_entry(urbp, &qh->queue, node); + urbp = list_prepare_entry(urbp, &qh->queue, node); list_for_each_entry_continue(urbp, &qh->queue, node) { /* If the first TD has the right toggle value, we don't