From 1d37bf1e981d6b2be3cd94a19824631a8519ce1c Mon Sep 17 00:00:00 2001 From: phk Date: Sat, 31 May 2003 20:06:27 +0000 Subject: Remove break after return. Found by: FlexeLint --- sys/net/if_ef.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'sys/net') diff --git a/sys/net/if_ef.c b/sys/net/if_ef.c index 86f73c1..cb7bc64 100644 --- a/sys/net/if_ef.c +++ b/sys/net/if_ef.c @@ -384,7 +384,6 @@ ef_input(struct ifnet *ifp, struct ether_header *eh, struct mbuf *m) switch(ft) { case ETHER_FT_EII: return (ef_inputEII(m, eh, ether_type)); - break; #ifdef IPX case ETHER_FT_8023: /* only IPX can be here */ isr = NETISR_IPX; @@ -392,10 +391,8 @@ ef_input(struct ifnet *ifp, struct ether_header *eh, struct mbuf *m) #endif case ETHER_FT_SNAP: return (ef_inputSNAP(m, eh, l, ether_type)); - break; case ETHER_FT_8022: return (ef_input8022(m, eh, l, ether_type)); - break; default: EFDEBUG("No support for frame %d and proto %04x\n", ft, ether_type); -- cgit v1.1