commit | e4e18cbd52c8efb0d73a66d0598dc887c0feefb7 | [log] [tgz] |
---|---|---|
author | Alan Stern <stern@rowland.harvard.edu> | Tue Sep 03 13:58:59 2013 -0400 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Tue Sep 17 09:49:24 2013 -0700 |
tree | cfccd558a8a8ec613d43bdd3b0d691449a458ea5 | |
parent | c7ccde6eac6d3c4bc6110cc3fd76ef3823bc0831 [diff] |
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 <stern@rowland.harvard.edu> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>