From: John Youn Date: Mon, 9 Aug 2010 20:56:11 +0000 (-0700) Subject: USB: xhci: Remove buggy assignment in next_trb() X-Git-Tag: firefly_0821_release~10186^2~1059 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=79a31466eea10298923b5ae0f5f749723d7a729b;p=firefly-linux-kernel-4.4.55.git USB: xhci: Remove buggy assignment in next_trb() commit a1669b2c64a9c8b031e0ac5cbf2692337a577f7c upstream. The code to increment the TRB pointer has a slight ambiguity that could lead to a bug on different compilers. The ANSI C specification does not specify the precedence of the assignment operator over the postfix operator. gcc 4.4 produced the correct code (increment the pointer and assign the value), but a MIPS compiler that one of John's clients used assigned the old (unincremented) value. Remove the unnecessary assignment to make all compilers produce the correct assembly. Signed-off-by: John Youn Signed-off-by: Sarah Sharp Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/host/xhci-ring.c b/drivers/usb/host/xhci-ring.c index 317e8dc7c4f3..6416a0fca012 100644 --- a/drivers/usb/host/xhci-ring.c +++ b/drivers/usb/host/xhci-ring.c @@ -124,7 +124,7 @@ static void next_trb(struct xhci_hcd *xhci, *seg = (*seg)->next; *trb = ((*seg)->trbs); } else { - *trb = (*trb)++; + (*trb)++; } }