diff options
author | Igor Mammedov <imammedo@redhat.com> | 2019-05-02 16:51:49 +0200 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2019-05-20 18:40:02 -0400 |
commit | 38fb3d7100b871eef3237cba2e4e1fed56d2bd1f (patch) | |
tree | 182406553189c1a4572cfce5cbdde04a48427e37 /tests/vmgenid-test.c | |
parent | b0e5196a52248d7e4eef709481c1c530c1bca6df (diff) | |
download | qemu-38fb3d7100b871eef3237cba2e4e1fed56d2bd1f.zip qemu-38fb3d7100b871eef3237cba2e4e1fed56d2bd1f.tar.gz qemu-38fb3d7100b871eef3237cba2e4e1fed56d2bd1f.tar.bz2 |
tests: acpi: rename acpi_parse_rsdp_table() into acpi_fetch_rsdp_table()
so name would reflect what the function does
Signed-off-by: Igor Mammedov <imammedo@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Wei Yang <richardw.yang@linux.intel.com>
Message-Id: <1556808723-226478-2-git-send-email-imammedo@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'tests/vmgenid-test.c')
-rw-r--r-- | tests/vmgenid-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/vmgenid-test.c b/tests/vmgenid-test.c index ae38ee5..f400184 100644 --- a/tests/vmgenid-test.c +++ b/tests/vmgenid-test.c @@ -40,7 +40,7 @@ static uint32_t acpi_find_vgia(QTestState *qts) g_assert_cmphex(rsdp_offset, <, RSDP_ADDR_INVALID); - acpi_parse_rsdp_table(qts, rsdp_offset, rsdp_table); + acpi_fetch_rsdp_table(qts, rsdp_offset, rsdp_table); acpi_fetch_table(qts, &rsdt, &rsdt_len, &rsdp_table[16 /* RsdtAddress */], "RSDT", true); |