[PATCH] ACPI: use IS_ENABLED() to simplify built-in or module checks

From: Lalit Shankar Chowdhury

Date: Mon Sep 21 2026 - 04:16:41 EST


Replace the remaining built-in/module check for CONFIG_ACPI_WMI
with IS_ENABLED() macro.

Signed-off-by: Lalit Shankar Chowdhury <lalitshankarch@xxxxxxxxx>
---
include/linux/acpi.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/linux/acpi.h b/include/linux/acpi.h
index ddacac812094..b590f520dc57 100644
--- a/include/linux/acpi.h
+++ b/include/linux/acpi.h
@@ -434,7 +434,7 @@ extern acpi_handle ec_get_handle(void);

extern bool acpi_is_pnp_device(struct acpi_device *);

-#if defined(CONFIG_ACPI_WMI) || defined(CONFIG_ACPI_WMI_MODULE)
+#if IS_ENABLED(CONFIG_ACPI_WMI)

typedef void (*wmi_notify_handler) (union acpi_object *data, void *context);

--
2.53.0