]> xenbits.xen.org Git - xenclient/xen.git/commitdiff
Added OEM ID to RSDP structure for consistency. Removed uneeded includes
authorRoss Philipson <ross.philipson@citrix.com>
Wed, 21 Jan 2009 21:09:05 +0000 (16:09 -0500)
committerRoss Philipson <ross.philipson@citrix.com>
Wed, 21 Jan 2009 21:09:05 +0000 (16:09 -0500)
of hvm_info_table.h.

 Changes to be committed:
modified:   tools/firmware/hvmloader/acpi/build.c
modified:   tools/libxc/xc_dom_x86.c
modified:   tools/libxc/xc_hvm_build.c

tools/firmware/hvmloader/acpi/build.c
tools/libxc/xc_dom_x86.c
tools/libxc/xc_hvm_build.c

index 8173ee6e6d44bf1ce630cb96762d7549c6fb02a4..b21baa54a47f3235494dace1e4f1fa1d4a992947 100644 (file)
@@ -328,7 +328,8 @@ static void __acpi_build_tables(uint8_t *buf, int *low_sz, int *high_sz)
     {
         pt_update_acpi_tables(&Rsdt.header, va_ac);
         pt_update_acpi_tables(&Xsdt.header, va_ac);
-        /* just the OEM ID for the FADT */
+        /* just the OEM ID for the RSDP and FADT */
+        memcpy(Rsdp.oem_id, va_ac->oem_id, HVM_ACINFO_OEM_ID_SIZE);
         memcpy(Fadt.header.oem_id, va_ac->oem_id, HVM_ACINFO_OEM_ID_SIZE);
     }
 
index f96ec3f7ab1682973770b1379ad65757ee90fc35..185ab2970eeb0c01776b35cebc6796ec91ad57ac 100644 (file)
@@ -17,7 +17,6 @@
 #include <xen/xen.h>
 #include <xen/foreign/x86_32.h>
 #include <xen/foreign/x86_64.h>
-#include <xen/hvm/hvm_info_table.h>
 #include <xen/io/protocols.h>
 
 #include "xg_private.h"
index 983bfe5a06d63f261929c8c1550d420d17429a58..34546197e8b001c319bb880f74c8dfd30c7ff57d 100644 (file)
@@ -13,7 +13,6 @@
 
 #include <xen/foreign/x86_32.h>
 #include <xen/foreign/x86_64.h>
-#include <xen/hvm/hvm_info_table.h>
 #include <xen/hvm/params.h>
 #include "xc_e820.h"