]> xenbits.xensource.com Git - qemu-xen.git/commitdiff
ACPI suspend type field is 3 bits long
authoraurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162>
Tue, 19 Aug 2008 13:14:17 +0000 (13:14 +0000)
committeraurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162>
Tue, 19 Aug 2008 13:14:17 +0000 (13:14 +0000)
According to ACPI spec table 4-13 suspend type field should be 3 bits
long.

(Gleb Natapov)

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5027 c046a42c-6fe2-441c-8c8c-71466251a162

hw/acpi.c

index ef0e0978dd4915e0ec97c19308039537faea8344..bdcc4255f115b79bded37e8c2c3529b6b0af87cd 100644 (file)
--- a/hw/acpi.c
+++ b/hw/acpi.c
@@ -145,7 +145,7 @@ static void pm_ioport_writew(void *opaque, uint32_t addr, uint32_t val)
             s->pmcntrl = val & ~(SUS_EN);
             if (val & SUS_EN) {
                 /* change suspend type */
-                sus_typ = (val >> 10) & 3;
+                sus_typ = (val >> 10) & 7;
                 switch(sus_typ) {
                 case 0: /* soft power off */
                     qemu_system_shutdown_request();