From 674ebf0f6b2fd5e0020bdca203c60c1bdfeccd57 Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Sat, 31 May 2003 20:01:14 +0000 Subject: [PATCH] Remove break after return; Found by: FlexeLint --- sys/pci/if_rl.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/sys/pci/if_rl.c b/sys/pci/if_rl.c index 935ad1babb9..f4a733d9c2f 100644 --- a/sys/pci/if_rl.c +++ b/sys/pci/if_rl.c @@ -626,7 +626,6 @@ rl_miibus_readreg(dev, phy, reg) case MII_PHYIDR2: RL_UNLOCK(sc); return(0); - break; /* * Allow the rlphy driver to read the media status * register. If we have a link partner which does not @@ -637,7 +636,6 @@ rl_miibus_readreg(dev, phy, reg) rval = CSR_READ_1(sc, RL_MEDIASTAT); RL_UNLOCK(sc); return(rval); - break; default: printf("rl%d: bad phy register\n", sc->rl_unit); RL_UNLOCK(sc);