Added a missed break in a case statement This was found using a static code analysis program called cppcheck.
Signed-off-by: Rickard Strandqvist <[email protected]> --- sound/oss/mpu401.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sound/oss/mpu401.c b/sound/oss/mpu401.c index 25e4609..400896b 100644 --- a/sound/oss/mpu401.c +++ b/sound/oss/mpu401.c @@ -316,6 +316,7 @@ static int mpu_input_scanner(struct mpu_config *devc, unsigned char midic) case 0xf6: /* printk( "tune_request\n"); */ devc->m_state = ST_INIT; + break; /* * Real time messages -- 1.7.10.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

