diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2009-04-28 21:20:11 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-28 16:07:18 -0700 |
commit | 16752e2ead535c0e616c64d3fee8401ebd0c9f62 (patch) | |
tree | 8acc28898c73d760eb68a9efe8db7352a5076568 /arch/m68k | |
parent | 2d04f6b9bc91540b8e931a0700440118161092e0 (diff) | |
download | op-kernel-dev-16752e2ead535c0e616c64d3fee8401ebd0c9f62.zip op-kernel-dev-16752e2ead535c0e616c64d3fee8401ebd0c9f62.tar.gz |
m68k: arch/m68k/kernel/sun3-head.S needs <linux/init.h>
Fix this:
arch/m68k/kernel/sun3-head.S: Assembler messages:
arch/m68k/kernel/sun3-head.S:32: Error: Unknown operator -- statement `__head' ignored
Introduced by commit 6f335cab0431d5df4995bcd4fd952d4c746d5a86 ("m68k:
convert to use __HEAD and HEAD_TEXT macros."), which started using
__HEAD without adding the appropriate include.
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/m68k')
-rw-r--r-- | arch/m68k/kernel/sun3-head.S | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/m68k/kernel/sun3-head.S b/arch/m68k/kernel/sun3-head.S index 9e5c3e5..43036bf 100644 --- a/arch/m68k/kernel/sun3-head.S +++ b/arch/m68k/kernel/sun3-head.S @@ -1,4 +1,5 @@ #include <linux/linkage.h> +#include <linux/init.h> #include <asm/entry.h> #include <asm/page.h> |