summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2010-07-08 19:29:26 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2010-07-08 19:29:26 +0000
commita79365931e84b710ebd13303a5b7478f4c56b760 (patch)
treea31866b90b728d7883f5ca4fa71194ed081d1d80
parent42fe260e202276b19e26117cee6a22855dd0d5ce (diff)
For DVACT_SUSPEND and DVACT_RESUME we should always return success.
-rw-r--r--sys/dev/pckbc/pckbd.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/sys/dev/pckbc/pckbd.c b/sys/dev/pckbc/pckbd.c
index 377be22e6d1..db26455922e 100644
--- a/sys/dev/pckbc/pckbd.c
+++ b/sys/dev/pckbc/pckbd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pckbd.c,v 1.24 2009/11/23 23:22:38 deraadt Exp $ */
+/* $OpenBSD: pckbd.c,v 1.25 2010/07/08 19:29:25 deraadt Exp $ */
/* $NetBSD: pckbd.c,v 1.24 2000/06/05 22:20:57 sommerfeld Exp $ */
/*-
@@ -417,17 +417,15 @@ pckbdattach(parent, self, aux)
int
pckbd_activate(struct device *self, int act)
{
- int rv = 0;
-
switch (act) {
case DVACT_SUSPEND:
- rv = pckbd_enable(self, 0);
+ pckbd_enable(self, 0);
break;
case DVACT_RESUME:
- rv = pckbd_enable(self, 1);
+ pckbd_enable(self, 1);
break;
}
- return (rv);
+ return (0);
}
int