summaryrefslogtreecommitdiff
path: root/init
diff options
context:
space:
mode:
authorAndrew Morton <akpm@osdl.org>2004-01-19 05:14:19 -0800
committerLinus Torvalds <torvalds@home.osdl.org>2004-01-19 05:14:19 -0800
commit2d0630e0977847dc9cb229061e9a75cc682afcae (patch)
treec10842e28a8673a80ef7fd1fc7d3bcff8e610b16 /init
parent31f73ed392786be28bdaa8a1ba0c8110dca701ed (diff)
[PATCH] remove null-ilizers
From: Jes Sorensen <jes@trained-monkey.org> The following patch removes a couple of null-ilizers of global variables. Not a big deal, but every byte helps in the .data segment ;-)
Diffstat (limited to 'init')
-rw-r--r--init/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/init/main.c b/init/main.c
index 41d1a2931b02..4c26b3769e80 100644
--- a/init/main.c
+++ b/init/main.c
@@ -105,7 +105,7 @@ int system_running;
extern void time_init(void);
/* Default late time init is NULL. archs can override this later. */
-void (*late_time_init)(void) = NULL;
+void (*late_time_init)(void);
extern void softirq_init(void);
static char *execute_command;