git: 33e095ee097d - main - acpi_spmc: Improve device description
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 31 Mar 2026 10:02:28 UTC
The branch main has been updated by obiwac:
URL: https://cgit.FreeBSD.org/src/commit/?id=33e095ee097d6a18dca95b8fae4edbda405bbb20
commit 33e095ee097d6a18dca95b8fae4edbda405bbb20
Author: Aymeric Wibo <obiwac@FreeBSD.org>
AuthorDate: 2026-03-31 10:01:08 +0000
Commit: Aymeric Wibo <obiwac@FreeBSD.org>
CommitDate: 2026-03-31 10:01:10 +0000
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
---
sys/dev/acpica/acpi_spmc.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys/dev/acpica/acpi_spmc.c b/sys/dev/acpica/acpi_spmc.c
index d6d4f2d34f2f..206d3a843f53 100644
--- a/sys/dev/acpica/acpi_spmc.c
+++ b/sys/dev/acpica/acpi_spmc.c
@@ -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);
}