When logging, use correct function name.

This commit is contained in:
Fredrik Holmqvist
2017-03-28 21:34:42 +02:00
parent 45ce7ea829
commit dd9702007b
@@ -665,7 +665,7 @@ get_irq_routing_table(acpi_handle busDeviceHandle, acpi_data *retBuffer)
status = AcpiGetIrqRoutingTable(busDeviceHandle, (ACPI_BUFFER*)retBuffer);
if (status == AE_BUFFER_OVERFLOW)
dprintf("evaluate_method: the passed buffer is too small!\n");
dprintf("get_irq_routing_table: the passed buffer is too small!\n");
return status == AE_OK ? B_OK : B_ERROR;
}