git: 3c2d2bcc6f5d - main - acpi_spmc(4): Factor out printing DSM call error, delineate function

From: Olivier Certner <olce_at_FreeBSD.org>
Date: Wed, 13 May 2026 12:39:43 UTC
The branch main has been updated by olce:

URL: https://cgit.FreeBSD.org/src/commit/?id=3c2d2bcc6f5d6e7819f0675afb8464e525c87cb3

commit 3c2d2bcc6f5d6e7819f0675afb8464e525c87cb3
Author:     Olivier Certner <olce@FreeBSD.org>
AuthorDate: 2026-05-04 15:40:46 +0000
Commit:     Olivier Certner <olce@FreeBSD.org>
CommitDate: 2026-05-13 12:38:20 +0000

    acpi_spmc(4): Factor out printing DSM call error, delineate function
    
    Introduce failed_to_call_dsm(), which prepends "function" before the
    function index for better clarity.  For now, it prints the function
    number, as before, but will soon print a human-readable name.
    
    Reviewed by:    imp (older version), obiwac
    Sponsored by:   The FreeBSD Foundation
    Differential Revision:  https://reviews.freebsd.org/D56805
---
 sys/dev/acpica/acpi_spmc.c | 23 ++++++++++++++---------
 1 file changed, 14 insertions(+), 9 deletions(-)

diff --git a/sys/dev/acpica/acpi_spmc.c b/sys/dev/acpica/acpi_spmc.c
index 30be1b4a32e7..f5951a4809d5 100644
--- a/sys/dev/acpica/acpi_spmc.c
+++ b/sys/dev/acpica/acpi_spmc.c
@@ -186,6 +186,15 @@ has_dsm(const struct acpi_spmc_softc *const sc, const int dsm_bit)
 	return ((sc->dsms & dsm_bit) != 0);
 }
 
+static void
+failed_to_call_dsm(const struct acpi_spmc_softc *const sc,
+    const struct dsm_desc *const dsm, const int function_index)
+{
+	(void)device_printf(sc->dev,
+	    "Failed to call DSM %s (rev %u) function %d\n",
+	    dsm->name, dsm->revision, function_index);
+}
+
 static void	acpi_spmc_check_dsm(struct acpi_spmc_softc *sc,
 		    ACPI_HANDLE handle, struct dsm_desc *dsm);
 static int	acpi_spmc_get_constraints(device_t dev);
@@ -470,8 +479,7 @@ acpi_spmc_get_constraints(device_t dev)
 	    dsm->revision, dsm_index.i, NULL, &result,
 	    ACPI_TYPE_PACKAGE);
 	if (ACPI_FAILURE(status)) {
-		device_printf(dev, "%s failed to call %s DSM %d (rev %d)\n",
-		    __func__, dsm->name, dsm_index.i, dsm->revision);
+		failed_to_call_dsm(sc, dsm, dsm_index.i);
 		return (ENXIO);
 	}
 
@@ -555,13 +563,10 @@ acpi_spmc_run_dsm(device_t dev, struct dsm_desc *dsm, int function_index)
 	status = acpi_EvaluateDSMTyped(sc->handle, (uint8_t *)&dsm->uuid,
 	    dsm->revision, function_index, NULL, &result, ACPI_TYPE_ANY);
 
-	if (ACPI_FAILURE(status)) {
-		device_printf(dev, "%s failed to call %s DSM %d (rev %d)\n",
-		    __func__, dsm->name, function_index, dsm->revision);
-		return;
-	}
-
-	AcpiOsFree(result.Pointer);
+	if (ACPI_FAILURE(status))
+		failed_to_call_dsm(sc, dsm, function_index);
+	else
+		AcpiOsFree(result.Pointer);
 }
 
 /*