Module Name:    src
Committed By:   christos
Date:           Thu Jul 10 15:26:30 UTC 2014

Modified Files:
        src/sys/dev/ic: smc91cxx.c

Log Message:
add missing fallthrough


To generate a diff of this commit:
cvs rdiff -u -r1.86 -r1.87 src/sys/dev/ic/smc91cxx.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/ic/smc91cxx.c
diff -u src/sys/dev/ic/smc91cxx.c:1.86 src/sys/dev/ic/smc91cxx.c:1.87
--- src/sys/dev/ic/smc91cxx.c:1.86	Sun Sep  8 10:27:39 2013
+++ src/sys/dev/ic/smc91cxx.c	Thu Jul 10 11:26:30 2014
@@ -1,4 +1,4 @@
-/*	$NetBSD: smc91cxx.c,v 1.86 2013/09/08 14:27:39 chs Exp $	*/
+/*	$NetBSD: smc91cxx.c,v 1.87 2014/07/10 15:26:30 christos Exp $	*/
 
 /*-
  * Copyright (c) 1997 The NetBSD Foundation, Inc.
@@ -71,7 +71,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: smc91cxx.c,v 1.86 2013/09/08 14:27:39 chs Exp $");
+__KERNEL_RCSID(0, "$NetBSD: smc91cxx.c,v 1.87 2014/07/10 15:26:30 christos Exp $");
 
 #include "opt_inet.h"
 
@@ -331,6 +331,7 @@ smc91cxx_attach(struct smc91cxx_softc *s
 		 * even if the PHY does.
 		 */
 		miicapabilities &= ~(BMSR_100TXFDX | BMSR_10TFDX);
+		/*FALLTHROUGH*/
 	case CHIP_91100FD:
 	case CHIP_91C111:
 		if (tmp & CR_MII_SELECT) {

Reply via email to