--- zzzz-none-000/linux-5.15.111/arch/x86/kernel/setup.c 2023-05-11 14:00:40.000000000 +0000 +++ puma7-atom-6670-761/linux-5.15.111/arch/x86/kernel/setup.c 2024-02-07 10:22:35.000000000 +0000 @@ -51,6 +51,8 @@ #include #include +#include + /* * max_low_pfn_mapped: highest directly mapped pfn < 4 GB * max_pfn_mapped: highest directly mapped pfn > 4 GB @@ -1184,6 +1186,8 @@ */ acpi_boot_init(); x86_dtb_init(); + if (IS_ENABLED(CONFIG_AVM_FW_INFO)) + avm_fw_info_init(); /* * get boot-time SMP configuration: @@ -1257,6 +1261,11 @@ reserve_standard_io_resources(); } +/* Kernel-Schnittstelle für das AVM-LED-Modul */ +enum _led_event; +int (*led_event_action)(int, enum _led_event, unsigned int) = NULL; +EXPORT_SYMBOL(led_event_action); + #endif /* CONFIG_X86_32 */ static struct notifier_block kernel_offset_notifier = {