diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-03-07 15:50:18 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-03-07 15:50:18 +0000 |
commit | 80deece241098192470892c5aacbbc607226f454 (patch) | |
tree | 4d3383aaffd1b2f36139057ab895ef06a6d3c9f5 /hw | |
parent | 9e622b15a3fb4872a1424f2717dc956da18e473d (diff) | |
download | qemu-80deece241098192470892c5aacbbc607226f454.zip |
Sparse fixes: move ACPI table definitions to pc.h
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6738 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw')
-rw-r--r-- | hw/pc.c | 6 | ||||
-rw-r--r-- | hw/pc.h | 3 |
2 files changed, 5 insertions, 4 deletions
@@ -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 @@ static void bochs_bios_init(void) 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 @@ -101,6 +101,9 @@ int ioport_get_a20(void); /* 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); |