--- zzzz-none-000/linux-4.9.279/arch/x86/kernel/setup.c 2021-08-08 06:38:54.000000000 +0000 +++ puma7-atom-6591-750/linux-4.9.279/arch/x86/kernel/setup.c 2023-02-08 11:43:42.000000000 +0000 @@ -116,6 +116,8 @@ #include #include +#include + /* * max_low_pfn_mapped: highest direct mapped pfn under 4GB * max_pfn_mapped: highest direct mapped pfn over 4GB @@ -1235,6 +1237,8 @@ acpi_boot_init(); sfi_init(); x86_dtb_init(); + if (IS_ENABLED(CONFIG_AVM_FW_INFO)) + avm_fw_info_init(); /* * get boot-time SMP configuration: @@ -1301,6 +1305,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 = {