projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
829bf7a
)
x86/apic: Fix the devicetree build in certain configs
author
Ricardo Ribalda Delgado
<
[email protected]
>
Mon, 2 Feb 2015 19:27:11 +0000
(20:27 +0100)
committer
Ingo Molnar
<
[email protected]
>
Wed, 18 Feb 2015 21:30:19 +0000
(22:30 +0100)
Without this patch:
LD init/built-in.o
arch/x86/built-in.o: In function `dtb_lapic_setup': kernel/devicetree.c:155:
undefined reference to `apic_force_enable'
Makefile:923: recipe for target 'vmlinux' failed
make: *** [vmlinux] Error 1
Signed-off-by: Ricardo Ribalda Delgado <
[email protected]
>
Reviewed-by: Maciej W. Rozycki <
[email protected]
>
Cc: David Rientjes <
[email protected]
>
Cc: Jan Beulich <
[email protected]
>
Link:
http://lkml.kernel.org/r/
[email protected]
Signed-off-by: Ingo Molnar <
[email protected]
>
arch/x86/include/asm/apic.h
patch
|
blob
|
history
diff --git
a/arch/x86/include/asm/apic.h
b/arch/x86/include/asm/apic.h
index 92003f3c8a427b9138796ceef1b76bc237860da3..efc3b22d896eb23b7e37cf9c720065c0b6b0c717 100644
(file)
--- a/
arch/x86/include/asm/apic.h
+++ b/
arch/x86/include/asm/apic.h
@@
-213,7
+213,15
@@
void register_lapic_address(unsigned long address);
extern void setup_boot_APIC_clock(void);
extern void setup_secondary_APIC_clock(void);
extern int APIC_init_uniprocessor(void);
+
+#ifdef CONFIG_X86_64
+static inline int apic_force_enable(unsigned long addr)
+{
+ return -1;
+}
+#else
extern int apic_force_enable(unsigned long addr);
+#endif
extern int apic_bsp_setup(bool upmode);
extern void apic_ap_setup(void);