m68k: Mark functions only called from setup_arch() __init

Some functions that are only called (indirectly) from setup_arch() lack
__init annotations.

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
This commit is contained in:
Geert Uytterhoeven
2013-06-25 21:15:24 +02:00
förälder 6ce4eac1f6
incheckning a4df02a217
12 ändrade filer med 22 tillägg och 21 borttagningar

Visa fil

@@ -7,6 +7,7 @@
*
*/
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/mm.h>
#include <linux/bootmem.h>
@@ -62,10 +63,7 @@ int dvma_map_iommu(unsigned long kaddr, unsigned long baddr,
}
void sun3_dvma_init(void)
void __init sun3_dvma_init(void)
{
memset(ptelist, 0, sizeof(ptelist));
}