Am Thu, Feb 11, 2021 at 12:24:37PM +0000 schrieb Ricardo Mestre: > Hi, > > Add missing break statement. OK?
makes sense to me, ok patrick@ > CID 1501710 > > Index: if_rge.c > =================================================================== > RCS file: /cvs/src/sys/dev/pci/if_rge.c,v > retrieving revision 1.11 > diff -u -p -c -u -r1.11 if_rge.c > --- if_rge.c 24 Dec 2020 06:34:03 -0000 1.11 > +++ if_rge.c 11 Feb 2021 12:21:33 -0000 > @@ -311,6 +311,7 @@ rge_activate(struct device *self, int ac > #ifndef SMALL_KERNEL > rge_wol_power(sc); > #endif > + break; > default: > rv = config_activate_children(self, act); > break; >
