diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2012-10-10 14:48:55 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2012-10-10 14:48:55 +0000 |
commit | f14730d7214076ab060ed9afb3d70a055d37deb4 (patch) | |
tree | a3bf108d44625e6726c3a862d242a7d415b7db19 | |
parent | ac57c71b57ba78a26afd15d407ab6233489961f0 (diff) |
add missing break
-rw-r--r-- | sys/dev/pci/itherm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/dev/pci/itherm.c b/sys/dev/pci/itherm.c index 389cefc7d48..0160b10ad8e 100644 --- a/sys/dev/pci/itherm.c +++ b/sys/dev/pci/itherm.c @@ -228,6 +228,7 @@ itherm_activate(struct device *self, int act) switch (act) { case DVACT_RESUME: itherm_enable(sc); + break; } return (0); |