[PATCH] init/main.c: remove extern declarations for subsys_initcall functions

From: H Hartley Sweeten
Date: Fri Jan 15 2010 - 17:48:27 EST


init/main.c: remove extern declarations for subsys_initcall functions

The functions mca_init, sbus_init, and tc_init are all subsys_initcall
functions and do not need to be declared as extern's.

Signed-off-by: H Hartley Sweeten <hsweeten@xxxxxxxxxxxxxxxxxxx>

---

diff --git a/init/main.c b/init/main.c
index dac44a9..e768467 100644
--- a/init/main.c
+++ b/init/main.c
@@ -85,8 +85,6 @@ static int kernel_init(void *);

extern void init_IRQ(void);
extern void fork_init(unsigned long);
-extern void mca_init(void);
-extern void sbus_init(void);
extern void prio_tree_init(void);
extern void radix_tree_init(void);
extern void free_initmem(void);
@@ -94,10 +92,6 @@ extern void free_initmem(void);
static inline void mark_rodata_ro(void) { }
#endif

-#ifdef CONFIG_TC
-extern void tc_init(void);
-#endif
-
enum system_states system_state __read_mostly;
EXPORT_SYMBOL(system_state);

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/