[patch 1/7 -rt] powerpc 2.6.20-rt8: fix compile error in bug.h

From: Tsutomu OWA
Date: Tue Mar 06 2007 - 20:15:01 EST



To fix the following compile error by enclosing it in ifndef __ASSEMBLY__/endif.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
include/asm-generic/bug.h
include/asm-generic/bug.h: Assembler messages:
include/asm-generic/bug.h:7: Error: Unrecognized opcode: `extern'
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Signed-off-by: Tsutomu Owa <tsutomu.owa@xxxxxxxxxxxxx>
-- owa

diff -rup linux-rt8/include/asm-generic/bug.h rt/include/asm-generic/bug.h
--- linux-rt8/include/asm-generic/bug.h 2007-02-20 14:30:39.000000000 +0900
+++ rt/include/asm-generic/bug.h 2007-02-20 15:48:42.000000000 +0900
@@ -3,7 +3,9 @@

#include <linux/compiler.h>

+#ifndef __ASSEMBLY__
extern void __WARN_ON(const char *func, const char *file, const int line);
+#endif /* __ASSEMBLY__ */

#ifdef CONFIG_BUG


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/