The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [PATCH v3 1/2] ACPI: Add stubs for wakeup handler functions
@ 2021-10-19 16:04 Mario Limonciello
  2021-10-19 16:04 ` [PATCH v3 2/2] pinctrl: amd: Fix wakeups when IRQ is shared with SCI Mario Limonciello
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Mario Limonciello @ 2021-10-19 16:04 UTC (permalink / raw)
  To: Linus Walleij, Basavaraj Natikar, Shyam Sundar S K
  Cc: open list:PIN CONTROL SUBSYSTEM, open list, Nehal Shah,
	Rafael J . Wysocki, Mario Limonciello

commit ddfd9dcf270c ("ACPI: PM: Add acpi_[un]register_wakeup_handler()")
added new functions for drivers to use during the s2idle wakeup path, but
didn't add stubs for when CONFIG_ACPI wasn't set.

Add those stubs in for other drivers to be able to use.

Fixes: ddfd9dcf270c ("ACPI: PM: Add acpi_[un]register_wakeup_handler()")
Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
---
 include/linux/acpi.h | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/include/linux/acpi.h b/include/linux/acpi.h
index 72e4f7fd268c..b31bcc0f4c89 100644
--- a/include/linux/acpi.h
+++ b/include/linux/acpi.h
@@ -976,6 +976,14 @@ static inline int acpi_get_local_address(acpi_handle handle, u32 *addr)
 	return -ENODEV;
 }
 
+static inline int acpi_register_wakeup_handler(
+	int wake_irq, bool (*wakeup)(void *context), void *context)
+{
+	return -EINVAL;
+}
+static inline void acpi_unregister_wakeup_handler(
+	bool (*wakeup)(void *context), void *context) { }
+
 #endif	/* !CONFIG_ACPI */
 
 #ifdef CONFIG_ACPI_HOTPLUG_IOAPIC
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2021-10-22 20:32 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-19 16:04 [PATCH v3 1/2] ACPI: Add stubs for wakeup handler functions Mario Limonciello
2021-10-19 16:04 ` [PATCH v3 2/2] pinctrl: amd: Fix wakeups when IRQ is shared with SCI Mario Limonciello
2021-10-22 11:09   ` Basavaraj Natikar
2021-10-22 11:17 ` [PATCH v3 1/2] ACPI: Add stubs for wakeup handler functions Basavaraj Natikar
2021-10-22 12:54 ` Rafael J. Wysocki
2021-10-22 20:32   ` Limonciello, Mario
2021-10-22 12:57 ` Andy Shevchenko

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox