* [Qemu-devel] [6738] Sparse fixes: move ACPI table definitions to pc.h
@ 2009-03-07 15:50 Blue Swirl
0 siblings, 0 replies; only message in thread
From: Blue Swirl @ 2009-03-07 15:50 UTC (permalink / raw)
To: qemu-devel
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);
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2009-03-07 15:50 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-07 15:50 [Qemu-devel] [6738] Sparse fixes: move ACPI table definitions to pc.h Blue Swirl
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).