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/pc.c | |
parent | 9e622b15a3fb4872a1424f2717dc956da18e473d (diff) |
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/pc.c')
-rw-r--r-- | hw/pc.c | 6 |
1 files changed, 2 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 |