| To: | Ralf Baechle <ralf@linux-mips.org> |
|---|---|
| Subject: | [PATCH resend] ifdef gic_present variable that is used only by malta |
| From: | Anoop P A <anoop.pa@gmail.com> |
| Date: | Tue, 25 Jan 2011 19:27:26 +0530 |
| Cc: | linux-mips@linux-mips.org, linux-kernel@vger.kernel.org |
| Dkim-signature: | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:subject:from:to:cc:in-reply-to:references :content-type:date:message-id:mime-version:x-mailer :content-transfer-encoding; bh=DW8T/RdUKwy6PgP8BSEsZNs+1p4c8oeg7NOs/z7b5TM=; b=MEpApU56FmcsnsvI/fbqIJrk6W+gjh1JPH9cMtBtN8lnHWH8vC7yteVUakznQqfXQn DfU+9xmxYVaTW4o15LUNqvX2KAuaMmM01A8l8UR8odADkptBvYr5S3obVU6856OEo1lm ycLQI9jrKZR3w9GgrQSbxCU5jkqFKFdmFIcQE= |
| Domainkey-signature: | a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=subject:from:to:cc:in-reply-to:references:content-type:date :message-id:mime-version:x-mailer:content-transfer-encoding; b=ZmpesXWLZt7CRmUJN5EzUuzqMUrXS5qPmD7QvQgPRhnsChMHeRC9gmVMcuyNnempyG iepvAkTEgH3JUGMSE2NPSC3jNnLd3lwkw8dI2J+RWZoz2JPjT8xeUoZ23+RiRKCCPbbT tpYnBB/SSK5VtXxdTiO/7iZkYPlhW5w5A9J6s= |
| In-reply-to: | <20110125132132.GA25526@linux-mips.org> |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| References: | <1291221075.31413.24.camel@paanoop1-desktop> <20110125132132.GA25526@linux-mips.org> |
| Sender: | linux-mips-bounce@linux-mips.org |
VSMP kernel build for non-malta platforms fails with following error
LD init/built-in.o
LD .tmp_vmlinux1
arch/mips/built-in.o: In function `vsmp_init_secondary':
smp-mt.c:(.cpuinit.text+0x23cc): undefined reference to `gic_present'
smp-mt.c:(.cpuinit.text+0x23d0): undefined reference to `gic_present'
make: *** [.tmp_vmlinux1] Error 1
gic_present variable is declared only if IRQ_GIC is selected.
Signed-off-by: Anoop P A <anoop.pa@gmail.com>
---
arch/mips/kernel/smp-mt.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/arch/mips/kernel/smp-mt.c b/arch/mips/kernel/smp-mt.c
index c0e8141..54235b5 100644
--- a/arch/mips/kernel/smp-mt.c
+++ b/arch/mips/kernel/smp-mt.c
@@ -151,6 +151,7 @@ static void vsmp_send_ipi_mask(const struct cpumask
*mask, unsigned int action)
static void __cpuinit vsmp_init_secondary(void)
{
+#ifdef CONFIG_IRQ_GIC
extern int gic_present;
/* This is Malta specific: IPI,performance and timer interrupts */
@@ -158,6 +159,7 @@ static void __cpuinit vsmp_init_secondary(void)
change_c0_status(ST0_IM, STATUSF_IP3 | STATUSF_IP4 |
STATUSF_IP6 | STATUSF_IP7);
else
+#endif
change_c0_status(ST0_IM, STATUSF_IP0 | STATUSF_IP1 |
STATUSF_IP6 | STATUSF_IP7);
}
--
1.7.0.4
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: merge two insts into one in a time sensitive routing, Ralf Baechle |
|---|---|
| Next by Date: | Re: [PATCH resend] ifdef gic_present variable that is used only by malta, Ralf Baechle |
| Previous by Thread: | Re: [PATCH] ifdef gic_present variable that is used only by malta, Ralf Baechle |
| Next by Thread: | Re: [PATCH resend] ifdef gic_present variable that is used only by malta, Ralf Baechle |
| Indexes: | [Date] [Thread] [Top] [All Lists] |