From: Sarah Sharp Date: Tue, 16 Oct 2012 20:26:22 +0000 (-0700) Subject: xhci: Fix missing break in xhci_evaluate_context_result. X-Git-Tag: v3.7-rc3~11^2^2~2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b80313422a1551cc1d4f3e2d532fe633154ae5dd;p=pandora-kernel.git xhci: Fix missing break in xhci_evaluate_context_result. Coverity complains that xhci_evaluate_context_result() is missing a break statement after the COMP_EBADSLT switch case. It's not a big deal, since we wanted to return the same error code as the case statement below it does. The end result would be one that a Slot Disabled error completion code would also print the warning message associated with a Context State error code. No other bad behavior would result. It's not worth backporting to stable kernels, since it only fixes an issue with too much debugging. Signed-off-by: Sarah Sharp --- Reading git-diff-tree failed