The following commit has been merged into the x86/cleanups branch of tip: Commit-ID: e008eeec7868a9ca6e159726aeb9bdbf2ab86647 Gitweb: https://git.kernel.org/tip/e008eeec7868a9ca6e159726aeb9bdbf2ab86647 Author: Zhang Kunbo <zhangkunbo@xxxxxxxxxx> AuthorDate: Tue, 26 Nov 2024 01:54:57 Committer: Ingo Molnar <mingo@xxxxxxxxxx> CommitterDate: Thu, 27 Feb 2025 22:52:37 +01:00 x86/platform: Fix missing declaration of 'x86_apple_machine' Fix this sparse warning: arch/x86/kernel/quirks.c:662:6: warning: symbol 'x86_apple_machine' was not declared. Should it be static? Signed-off-by: Zhang Kunbo <zhangkunbo@xxxxxxxxxx> Signed-off-by: Ingo Molnar <mingo@xxxxxxxxxx> Link: https://lore.kernel.org/r/20241126015636.3463994-1-zhangkunbo@xxxxxxxxxx --- arch/x86/kernel/quirks.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/x86/kernel/quirks.c b/arch/x86/kernel/quirks.c index 6d0df6a..a92f18d 100644 --- a/arch/x86/kernel/quirks.c +++ b/arch/x86/kernel/quirks.c @@ -10,6 +10,8 @@ #include <asm/setup.h> #include <asm/mce.h> +#include <linux/platform_data/x86/apple.h> + #if defined(CONFIG_X86_IO_APIC) && defined(CONFIG_SMP) && defined(CONFIG_PCI) static void quirk_intel_irqbalance(struct pci_dev *dev)
![]() |