From: Alan Stern Date: Tue, 3 Sep 2013 17:58:59 +0000 (-0400) Subject: USB: EHCI: code rearrangement in iso_stream_schedule() X-Git-Tag: omap-for-v3.13/fixes-for-merge-window-take2~66^2~185 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e4e18cbd52c8efb0d73a66d0598dc887c0feefb7;p=pandora-kernel.git USB: EHCI: code rearrangement in iso_stream_schedule() This patch interchanges the "if" and "else" branches of the big "if" statement in iso_stream_schedule(), in preparation for the next patch in this series. That is, it changes if (likely(!...)) { A } else { B } to if (unlikely(...)) { B } else { A } Signed-off-by: Alan Stern Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed