]> xenbits.xensource.com Git - xen.git/commitdiff
Revert "/home/jbeulich/tmp/commit.txt"
authorJan Beulich <jbeulich@suse.com>
Mon, 8 Jul 2013 11:16:29 +0000 (13:16 +0200)
committerJan Beulich <jbeulich@suse.com>
Mon, 8 Jul 2013 11:16:29 +0000 (13:16 +0200)
This reverts commit 80e3eddcc4896ab40c24506fd05f9795c4039b48.

tools/firmware/hvmloader/acpi/build.c

index f1dd3f0e690e462ffb53584dbad70a397c18e2ca..7281b972fc7c44e8331956aa51a59ab2df67b4b8 100644 (file)
@@ -268,13 +268,11 @@ static int construct_secondary_tables(unsigned long *table_ptrs,
         table_ptrs[nr_tables++] = (unsigned long)madt;
     }
 
-    /* HPET. */
-    if ( hpet_exists(ACPI_HPET_ADDRESS) )
-    {
-        hpet = construct_hpet();
-        if (!hpet) return -1;
-        table_ptrs[nr_tables++] = (unsigned long)hpet;
-    }
+    /* HPET. Always included in DSDT, so always include it here too. */
+    /* (And it's unconditionally required by Windows SVVP tests.) */
+    hpet = construct_hpet();
+    if (!hpet) return -1;
+    table_ptrs[nr_tables++] = (unsigned long)hpet;
 
     /* WAET. */
     waet = construct_waet();