diff options
| author | Laszlo Ersek <lersek@redhat.com> | 2013-03-21 00:23:14 +0100 |
|---|---|---|
| committer | Anthony Liguori <aliguori@us.ibm.com> | 2013-04-04 19:23:08 -0500 |
| commit | cb88a4ea79193cdbfb9b27bf9deb36c88ec9b6dc (patch) | |
| tree | 1472bb9d234c4c0eaebb5e0b57a957fb3096e176 /hw/pc.h | |
| parent | 4d8b3c6302fe50e9192854d8affda883e078fd4d (diff) | |
| download | focaccia-qemu-cb88a4ea79193cdbfb9b27bf9deb36c88ec9b6dc.tar.gz focaccia-qemu-cb88a4ea79193cdbfb9b27bf9deb36c88ec9b6dc.zip | |
change element type from "char" to "unsigned char" in ACPI table data
The data is binary, not textual. Also, acpi_table_add() abuses the "char *f" pointer -- which normally points to file names to load -- to poke into the table. Introduce "char unsigned *table_start" for that purpose. Signed-off-by: Laszlo Ersek <lersek@redhat.com> Reviewed-by: Anthony Liguori <aliguori@us.ibm.com> Message-id: 1363821803-3380-3-git-send-email-lersek@redhat.com Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/pc.h')
| -rw-r--r-- | hw/pc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/pc.h b/hw/pc.h index 8e1dd4cad4..c967e9f822 100644 --- a/hw/pc.h +++ b/hw/pc.h @@ -109,7 +109,7 @@ void ioapic_init_gsi(GSIState *gsi_state, const char *parent_name); /* acpi.c */ extern int acpi_enabled; -extern char *acpi_tables; +extern char unsigned *acpi_tables; extern size_t acpi_tables_len; void acpi_bios_init(void); |