From: tip-bot for Ricardo Ribalda Delgado <tipbot@zytor.com>
To: linux-tip-commits@vger.kernel.org
Cc: JBeulich@suse.com, ricardo.ribalda@gmail.com,
linux-kernel@vger.kernel.org, mingo@kernel.org,
tglx@linutronix.de, rientjes@google.com, hpa@zytor.com,
macro@linux-mips.org
Subject: [tip:x86/urgent] x86/apic: Fix the devicetree build in certain configs
Date: Wed, 18 Feb 2015 16:27:25 -0800 [thread overview]
Message-ID: <tip-b273c2c2f2d2d13dc0bfa8923d52fbaf8fa56ae8@git.kernel.org> (raw)
In-Reply-To: <1422905231-16067-1-git-send-email-ricardo.ribalda@gmail.com>
Commit-ID: b273c2c2f2d2d13dc0bfa8923d52fbaf8fa56ae8
Gitweb: http://git.kernel.org/tip/b273c2c2f2d2d13dc0bfa8923d52fbaf8fa56ae8
Author: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com>
AuthorDate: Mon, 2 Feb 2015 20:27:11 +0100
Committer: Ingo Molnar <mingo@kernel.org>
CommitDate: Wed, 18 Feb 2015 22:30:19 +0100
x86/apic: Fix the devicetree build in certain configs
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 <ricardo.ribalda@gmail.com>
Reviewed-by: Maciej W. Rozycki <macro@linux-mips.org>
Cc: David Rientjes <rientjes@google.com>
Cc: Jan Beulich <JBeulich@suse.com>
Link: http://lkml.kernel.org/r/1422905231-16067-1-git-send-email-ricardo.ribalda@gmail.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
---
arch/x86/include/asm/apic.h | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/arch/x86/include/asm/apic.h b/arch/x86/include/asm/apic.h
index 92003f3..efc3b22 100644
--- 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);
prev parent reply other threads:[~2015-02-19 0:27 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-02-02 19:27 [PATCH v3] x86/devicetree: Fix build for amd64 Ricardo Ribalda Delgado
2015-02-03 11:45 ` Maciej W. Rozycki
2015-02-19 0:27 ` tip-bot for Ricardo Ribalda Delgado [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=tip-b273c2c2f2d2d13dc0bfa8923d52fbaf8fa56ae8@git.kernel.org \
--to=tipbot@zytor.com \
--cc=JBeulich@suse.com \
--cc=hpa@zytor.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-tip-commits@vger.kernel.org \
--cc=macro@linux-mips.org \
--cc=mingo@kernel.org \
--cc=ricardo.ribalda@gmail.com \
--cc=rientjes@google.com \
--cc=tglx@linutronix.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox