acpi_spmc(4): Global message on constraints parsing failure

...in order to indicate to users that power state constraints will not
be checked at all.

Reviewed by:    imp, obiwac
Sponsored by:   The FreeBSD Foundation
Differential Revision:  https://reviews.freebsd.org/D56816
This commit is contained in:
Olivier Certner
2026-05-04 21:49:32 +02:00
parent ee13d62417
commit 5ba100a35c
+7 -1
View File
@@ -367,6 +367,7 @@ acpi_spmc_attach(device_t dev)
struct acpi_spmc_softc *const sc = device_get_softc(dev);
const ACPI_HANDLE handle = acpi_get_handle(dev);
char buf[32];
int error;
/*
* ACPI_ID_PROBE() in acpi_spmc_probe() cannot succeed without a handle.
@@ -399,7 +400,12 @@ acpi_spmc_attach(device_t dev)
acpi_spmc_dsm_print_functions(sc, dsms[i]);
/* Get device constraints. We can only call this once so do this now. */
acpi_spmc_get_constraints(sc);
error = acpi_spmc_get_constraints(sc);
if (error != 0)
/* acpi_spmc_get_constraints() takes care of cleaning up. */
device_printf(dev,
"Could not parse power state constraints (%d), "
"will not check for them before suspend\n", error);
sc->eh_suspend = EVENTHANDLER_REGISTER(acpi_post_dev_suspend,
acpi_spmc_suspend, dev, 0);