diff options
| author | Olivier Certner <olce@FreeBSD.org> | 2026-05-04 11:35:23 +0000 |
|---|---|---|
| committer | Olivier Certner <olce@FreeBSD.org> | 2026-05-13 12:38:20 +0000 |
| commit | ee00031940d647962457d64e86a2e433a2f7a2ed (patch) | |
| tree | 64df9655a9c4b4ca35a391cf332c36a0392a33b1 | |
| parent | cc628a66b4c4d8423830491ebfd69333f7d02378 (diff) | |
| -rw-r--r-- | sys/dev/acpica/acpi_spmc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/acpica/acpi_spmc.c b/sys/dev/acpica/acpi_spmc.c index 641ed269c6b6..45231038fd42 100644 --- a/sys/dev/acpica/acpi_spmc.c +++ b/sys/dev/acpica/acpi_spmc.c @@ -477,7 +477,7 @@ acpi_spmc_free_constraints(struct acpi_spmc_softc *const sc) } static int -acpi_spmc_get_constraints_intel(struct acpi_spmc_softc *sc, ACPI_OBJECT *object) +acpi_spmc_parse_constraints_intel(struct acpi_spmc_softc *sc, ACPI_OBJECT *object) { struct acpi_spmc_constraint *constraint; int revision; @@ -540,7 +540,7 @@ acpi_spmc_get_constraints_intel(struct acpi_spmc_softc *sc, ACPI_OBJECT *object) } static int -acpi_spmc_get_constraints_amd(struct acpi_spmc_softc *sc, ACPI_OBJECT *object) +acpi_spmc_parse_constraints_amd(struct acpi_spmc_softc *sc, ACPI_OBJECT *object) { size_t constraint_count; ACPI_OBJECT *constraint_obj; @@ -631,9 +631,9 @@ acpi_spmc_get_constraints(device_t dev) object = (ACPI_OBJECT *)result.Pointer; if (is_amd) - rv = acpi_spmc_get_constraints_amd(sc, object); + rv = acpi_spmc_parse_constraints_amd(sc, object); else - rv = acpi_spmc_get_constraints_intel(sc, object); + rv = acpi_spmc_parse_constraints_intel(sc, object); AcpiOsFree(object); if (rv != 0) return (rv); |
