acpi_spmc: Improve device description

"Low Power S0 Idle" doesn't mean that much. "System Power Management
Controller" is what "SPMC" stands for in the first place.

Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Aymeric Wibo
2026-03-31 18:01:08 +08:00
parent 69124109c5
commit 33e095ee09
+2 -2
View File
@@ -206,8 +206,8 @@ acpi_spmc_probe(device_t dev)
if (sc->dsm_sets == 0)
return (ENXIO);
device_set_descf(dev, "Low Power S0 Idle (DSM sets 0x%x)",
sc->dsm_sets);
device_set_descf(dev, "System Power Management Controller "
"(DSM sets 0x%x)", sc->dsm_sets);
return (0);
}