m68knommu: 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>
Signed-off-by: Greg Ungerer <gerg@uclinux.org>
This commit is contained in:
Geert Uytterhoeven
2013-06-30 11:58:40 +02:00
committed by Greg Ungerer
parent d8dfad3876
commit df592eb5dc
6 changed files with 14 additions and 9 deletions

View File

@@ -118,7 +118,7 @@ void (*mach_power_off)(void);
*
* Returns:
*/
void parse_uboot_commandline(char *commandp, int size)
static void __init parse_uboot_commandline(char *commandp, int size)
{
extern unsigned long _init_sp;
unsigned long *sp;