artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5b34c8b
)
Add missing break in switch statement of rge_activate().
author
stsp
<stsp@openbsd.org>
Thu, 11 Feb 2021 16:22:06 +0000
(16:22 +0000)
committer
stsp
<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
patch
|
blob
|
history
diff --git
a/sys/dev/pci/if_rge.c
b/sys/dev/pci/if_rge.c
index
36a9d13
..
1b8d0b6
100644
(file)
--- a/
sys/dev/pci/if_rge.c
+++ b/
sys/dev/pci/if_rge.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: if_rge.c,v 1.1
1 2020/12/24 06:34:03 deraadt Exp $
*/
+/* $OpenBSD: if_rge.c,v 1.1
2 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;