diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2010-09-20 00:49:01 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2010-09-20 00:49:01 +0000 |
commit | bbb785d062f5a9c5ad3f048b06c3721c99016711 (patch) | |
tree | 8e4250402446088a9d01f9c9d807ea149113eee8 | |
parent | 6b8b19aaaf22e601e0194faef24d942d6e6b3f72 (diff) |
Must travese deeper for DVACT_QUIESCE; ok miod
-rw-r--r-- | sys/arch/loongson/dev/glxpcib.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/loongson/dev/glxpcib.c b/sys/arch/loongson/dev/glxpcib.c index 539dc968998..ef89c1d10d8 100644 --- a/sys/arch/loongson/dev/glxpcib.c +++ b/sys/arch/loongson/dev/glxpcib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: glxpcib.c,v 1.9 2010/09/07 16:59:42 deraadt Exp $ */ +/* $OpenBSD: glxpcib.c,v 1.10 2010/09/20 00:49:00 deraadt Exp $ */ /* * Copyright (c) 2007 Marc Balmer <mbalmer@openbsd.org> @@ -286,6 +286,9 @@ glxpcib_activate(struct device *self, int act) uint i; switch (act) { + case DVACT_QUIESCE: + rv = config_activate_children(self, act); + break; case DVACT_SUSPEND: rv = config_activate_children(self, act); for (i = 0; i < nitems(glxpcib_msrlist); i++) |