qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [6738] Sparse fixes: move ACPI table definitions to pc.h


From: Blue Swirl
Subject: [Qemu-devel] [6738] Sparse fixes: move ACPI table definitions to pc.h
Date: Sat, 07 Mar 2009 15:50:18 +0000

Revision: 6738
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6738
Author:   blueswir1
Date:     2009-03-07 15:50:18 +0000 (Sat, 07 Mar 2009)
Log Message:
-----------
Sparse fixes: move ACPI table definitions to pc.h

Modified Paths:
--------------
    trunk/hw/pc.c
    trunk/hw/pc.h

Modified: trunk/hw/pc.c
===================================================================
--- trunk/hw/pc.c       2009-03-07 15:46:23 UTC (rev 6737)
+++ trunk/hw/pc.c       2009-03-07 15:50:18 UTC (rev 6738)
@@ -54,9 +54,6 @@
 
 #define MAX_IDE_BUS 2
 
-extern uint8_t *acpi_tables;
-extern size_t acpi_tables_len;
-
 static fdctrl_t *floppy_controller;
 static RTCState *rtc_state;
 static PITState *pit;
@@ -443,7 +440,8 @@
     fw_cfg = fw_cfg_init(BIOS_CFG_IOPORT, BIOS_CFG_IOPORT + 1, 0, 0);
     fw_cfg_add_i32(fw_cfg, FW_CFG_ID, 1);
     fw_cfg_add_i64(fw_cfg, FW_CFG_RAM_SIZE, (uint64_t)ram_size);
-    fw_cfg_add_bytes(fw_cfg, FW_CFG_ACPI_TABLES, acpi_tables, acpi_tables_len);
+    fw_cfg_add_bytes(fw_cfg, FW_CFG_ACPI_TABLES, (uint8_t *)acpi_tables,
+                     acpi_tables_len);
 }
 
 /* Generate an initial boot sector which sets state and jump to

Modified: trunk/hw/pc.h
===================================================================
--- trunk/hw/pc.h       2009-03-07 15:46:23 UTC (rev 6737)
+++ trunk/hw/pc.h       2009-03-07 15:50:18 UTC (rev 6738)
@@ -101,6 +101,9 @@
 
 /* acpi.c */
 extern int acpi_enabled;
+extern char *acpi_tables;
+extern size_t acpi_tables_len;
+
 i2c_bus *piix4_pm_init(PCIBus *bus, int devfn, uint32_t smb_io_base,
                        qemu_irq sci_irq);
 void piix4_smbus_register_device(SMBusDevice *dev, uint8_t addr);





reply via email to

[Prev in Thread] Current Thread [Next in Thread]