* [PATCH] mips: fix build error on malta
@ 2008-10-21 0:04 Frederic Weisbecker
2008-10-23 21:30 ` Ralf Baechle
0 siblings, 1 reply; 2+ messages in thread
From: Frederic Weisbecker @ 2008-10-21 0:04 UTC (permalink / raw)
To: Ralf Baechle; +Cc: Linux Kernel
When trying to build a kernel configured for malta board, one get
these errors and then the build craches:
arch/mips/mti-malta/malta-amon.c:25:32: asm-mips/addrspace.h: No such file or directory
arch/mips/mti-malta/malta-amon.c:26:41: asm-mips/mips-boards/launch.h: No such file or directory
arch/mips/mti-malta/malta-amon.c:27:33: asm-mips/mipsmtregs.h: No such file or directory
arch/mips/mti-malta/malta-amon.c: In function `amon_cpu_avail':
arch/mips/mti-malta/malta-amon.c:31: error: `CPULAUNCH' undeclared (first use in this function)
arch/mips/mti-malta/malta-amon.c:31: error: (Each undeclared identifier is reported only once
arch/mips/mti-malta/malta-amon.c:31: error: for each function it appears in.)
arch/mips/mti-malta/malta-amon.c:33: error: `NCPULAUNCH' undeclared (first use in this function)
arch/mips/mti-malta/malta-amon.c:38: error: invalid use of undefined type `struct cpulaunch'
arch/mips/mti-malta/malta-amon.c:39: error: dereferencing pointer to incomplete type
arch/mips/mti-malta/malta-amon.c:39: error: `LAUNCH_FREADY' undeclared (first use in this function)
arch/mips/mti-malta/malta-amon.c:43: error: dereferencing pointer to incomplete type
arch/mips/mti-malta/malta-amon.c:43: error: `LAUNCH_FGO' undeclared (first use in this function)
arch/mips/mti-malta/malta-amon.c:43: error: `LAUNCH_FGONE' undeclared (first use in this function)
arch/mips/mti-malta/malta-amon.c: In function `amon_cpu_start':
arch/mips/mti-malta/malta-amon.c:56: error: `CPULAUNCH' undeclared (first use in this function)
arch/mips/mti-malta/malta-amon.c:64: error: invalid use of undefined type `struct cpulaunch'
arch/mips/mti-malta/malta-amon.c:68: error: dereferencing pointer to incomplete type
arch/mips/mti-malta/malta-amon.c:69: error: dereferencing pointer to incomplete type
arch/mips/mti-malta/malta-amon.c:70: error: dereferencing pointer to incomplete type
arch/mips/mti-malta/malta-amon.c:71: error: dereferencing pointer to incomplete type
arch/mips/mti-malta/malta-amon.c:76: error: dereferencing pointer to incomplete type
arch/mips/mti-malta/malta-amon.c:76: error: `LAUNCH_FGO' undeclared (first use in this function)
arch/mips/mti-malta/malta-amon.c:77: error: dereferencing pointer to incomplete type
arch/mips/mti-malta/malta-amon.c:77: error: `LAUNCH_FGONE' undeclared (first use in this function)
make[1]: *** [arch/mips/mti-malta/malta-amon.o] Erreur 1
This patch corrects the path for mips headers in
arch/mips/mti-malta/malta-amon.c
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
---
diff --git a/arch/mips/mti-malta/malta-amon.c b/arch/mips/mti-malta/malta-amon.c
index 96236bf..df9e526 100644
--- a/arch/mips/mti-malta/malta-amon.c
+++ b/arch/mips/mti-malta/malta-amon.c
@@ -22,9 +22,9 @@
#include <linux/init.h>
#include <linux/smp.h>
-#include <asm-mips/addrspace.h>
-#include <asm-mips/mips-boards/launch.h>
-#include <asm-mips/mipsmtregs.h>
+#include <asm/addrspace.h>
+#include <asm/mips-boards/launch.h>
+#include <asm/mipsmtregs.h>
int amon_cpu_avail(int cpu)
{
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] mips: fix build error on malta
2008-10-21 0:04 [PATCH] mips: fix build error on malta Frederic Weisbecker
@ 2008-10-23 21:30 ` Ralf Baechle
0 siblings, 0 replies; 2+ messages in thread
From: Ralf Baechle @ 2008-10-23 21:30 UTC (permalink / raw)
To: Frederic Weisbecker; +Cc: Linux Kernel
On Tue, Oct 21, 2008 at 02:04:07AM +0200, Frederic Weisbecker wrote:
> This patch corrects the path for mips headers in
> arch/mips/mti-malta/malta-amon.c
>
> Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Thanks for your patch. I've already got an equivalent patch commited; it
just hasn't yet made it to kernel.org.
Please always cc MIPS patches to linux-mips@linux-mips.org.
Ralf
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-10-23 21:30 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-21 0:04 [PATCH] mips: fix build error on malta Frederic Weisbecker
2008-10-23 21:30 ` Ralf Baechle
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.