diff options
| author | Olivier Certner <olce@FreeBSD.org> | 2026-05-04 12:57:05 +0000 |
|---|---|---|
| committer | Olivier Certner <olce@FreeBSD.org> | 2026-05-13 12:38:19 +0000 |
| commit | 704b96509d3c720be382f13d3d020b40acc21e31 (patch) | |
| tree | e22520d839f7de8952363d21116c791ce85bf8bd | |
| parent | beca41dfb55f0b83612fe8a2aec508944c4b2138 (diff) | |
| -rw-r--r-- | sys/dev/acpica/acpi_spmc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/acpica/acpi_spmc.c b/sys/dev/acpica/acpi_spmc.c index 36a2c20e6be8..b13e78b8000b 100644 --- a/sys/dev/acpica/acpi_spmc.c +++ b/sys/dev/acpica/acpi_spmc.c @@ -301,7 +301,7 @@ acpi_spmc_free_constraints(struct acpi_spmc_softc *sc) } static int -acpi_spmc_get_constraints_spec(struct acpi_spmc_softc *sc, ACPI_OBJECT *object) +acpi_spmc_get_constraints_intel(struct acpi_spmc_softc *sc, ACPI_OBJECT *object) { struct acpi_spmc_constraint *constraint; int revision; @@ -465,7 +465,7 @@ acpi_spmc_get_constraints(device_t dev) if (is_amd) rv = acpi_spmc_get_constraints_amd(sc, object); else - rv = acpi_spmc_get_constraints_spec(sc, object); + rv = acpi_spmc_get_constraints_intel(sc, object); AcpiOsFree(object); if (rv != 0) return (rv); |
