From: Arnd Bergmann Date: Thu, 1 Jun 2023 21:33:15 +0000 (+0200) Subject: ACPI: PM: s2idle: fix section mismatch warning X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=89d5b7178d4edc2a5d7b6070923fe2d2125ec52a;p=users%2Fjedix%2Flinux-maple.git ACPI: PM: s2idle: fix section mismatch warning The acpi_sleep_suspend_setup() function is missing an __init annotation, which causes a warning in rare configurations that end up not inlining it into its caller: WARNING: modpost: vmlinux.o: section mismatch in reference: acpi_sleep_suspend_setup (section: .text) -> acpi_s2idle_setup (section: .init.text) It's only called from an __init function, so adding the annotation is correct here. Signed-off-by: Arnd Bergmann Signed-off-by: Rafael J. Wysocki --- diff --git a/drivers/acpi/sleep.c b/drivers/acpi/sleep.c index 72470b9f16c45..552adc04743b5 100644 --- a/drivers/acpi/sleep.c +++ b/drivers/acpi/sleep.c @@ -840,7 +840,7 @@ void __weak acpi_s2idle_setup(void) s2idle_set_ops(&acpi_s2idle_ops); } -static void acpi_sleep_suspend_setup(void) +static void __init acpi_sleep_suspend_setup(void) { bool suspend_ops_needed = false; int i;