Add missing break in switch statement of rge_activate().
authorstsp <stsp@openbsd.org>
Thu, 11 Feb 2021 16:22:06 +0000 (16:22 +0000)
committerstsp <stsp@openbsd.org>
Thu, 11 Feb 2021 16:22:06 +0000 (16:22 +0000)
CID 1501716

ok kevlo@
and mestre@ had the same diff

sys/dev/pci/if_rge.c

index 36a9d13..1b8d0b6 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: if_rge.c,v 1.11 2020/12/24 06:34:03 deraadt Exp $     */
+/*     $OpenBSD: if_rge.c,v 1.12 2021/02/11 16:22:06 stsp Exp $        */
 
 /*
  * Copyright (c) 2019, 2020 Kevin Lo <kevlo@openbsd.org>
@@ -311,6 +311,7 @@ rge_activate(struct device *self, int act)
 #ifndef SMALL_KERNEL
                rge_wol_power(sc);
 #endif
+               break;
        default:
                rv = config_activate_children(self, act);
                break;