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
This commit is contained in:
parent
9e622b15a3
commit
80deece241
6
hw/pc.c
6
hw/pc.c
@ -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
|
||||
|
3
hw/pc.h
3
hw/pc.h
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user