summary refs log tree commit diff stats
path: root/hw/acpi/ghes-stub.c
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab+huawei@kernel.org>2025-01-15 13:50:26 +0100
committerMichael S. Tsirkin <mst@redhat.com>2025-01-15 13:07:10 -0500
commitd32028a54000db671eb2d0b6b28bbf15acc2e5f9 (patch)
tree27c2524a3dd02643fd95124f5cd4fddf17fcf1f3 /hw/acpi/ghes-stub.c
parent48b0dcdd67d3fafbd07f6298257259dec4f541ce (diff)
downloadfocaccia-qemu-d32028a54000db671eb2d0b6b28bbf15acc2e5f9.tar.gz
focaccia-qemu-d32028a54000db671eb2d0b6b28bbf15acc2e5f9.zip
acpi/ghes: better name GHES memory error function
The current function used to generate GHES data is specific for
memory errors. Give a better name for it, as we now have a generic
function as well.

Reviewed-by: Igor Mammedov <imammedo@redhat.com>
Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Message-Id: <35b59121129d5e99cb5062cc3d775594bbb0905b.1736945236.git.mchehab+huawei@kernel.org>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/acpi/ghes-stub.c')
-rw-r--r--hw/acpi/ghes-stub.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/acpi/ghes-stub.c b/hw/acpi/ghes-stub.c
index 2b64cbd281..7cec1812da 100644
--- a/hw/acpi/ghes-stub.c
+++ b/hw/acpi/ghes-stub.c
@@ -11,7 +11,7 @@
 #include "qemu/osdep.h"
 #include "hw/acpi/ghes.h"
 
-int acpi_ghes_record_errors(uint16_t source_id, uint64_t physical_address)
+int acpi_ghes_memory_errors(uint16_t source_id, uint64_t physical_address)
 {
     return -1;
 }