From: Ricardo Ribalda Date: Mon, 16 Dec 2024 21:17:16 +0000 (+0000) Subject: ACPI: bus: implement for_each_acpi_dev_match when !ACPI X-Git-Tag: v6.14-rc1~147^2^4~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e04efd34d9fe36e934e86e61f568c427a999aa5c;p=thirdparty%2Fkernel%2Flinux.git ACPI: bus: implement for_each_acpi_dev_match when !ACPI Provide an implementation of for_each_acpi_dev_match that can be used when CONFIG_ACPI is not set. The condition `false && hid && uid && hrv` is used to avoid "variable not used" warnings. Reviewed-by: Sakari Ailus Acked-by: Mauro Carvalho Chehab Signed-off-by: Ricardo Ribalda Link: https://patch.msgid.link/20241216-fix-ipu-v5-2-3d6b35ddce7b@chromium.org Signed-off-by: Rafael J. Wysocki --- diff --git a/include/acpi/acpi_bus.h b/include/acpi/acpi_bus.h index 19f92852e1273..a9b5a5204781e 100644 --- a/include/acpi/acpi_bus.h +++ b/include/acpi/acpi_bus.h @@ -1003,6 +1003,9 @@ static inline int unregister_acpi_bus_type(void *bus) { return 0; } static inline int acpi_wait_for_acpi_ipmi(void) { return 0; } +#define for_each_acpi_dev_match(adev, hid, uid, hrv) \ + for (adev = NULL; false && (hid) && (uid) && (hrv); ) + #endif /* CONFIG_ACPI */ #endif /*__ACPI_BUS_H__*/