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>

authored by Geert Uytterhoeven and committed by Linus Torvalds 16752e2e 2d04f6b9

+1
+1
arch/m68k/kernel/sun3-head.S
··· 1 #include <linux/linkage.h> 2 3 #include <asm/entry.h> 4 #include <asm/page.h>
··· 1 #include <linux/linkage.h> 2 + #include <linux/init.h> 3 4 #include <asm/entry.h> 5 #include <asm/page.h>