diff options
| author | Kang Hu <hukangustc@gmail.com> | 2014-01-27 17:07:00 -0800 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-01-27 21:02:39 -0800 | 
| commit | 729abd2ba7007cc2be9e77718ba52d0866d3f60f (patch) | |
| tree | b7cd3f36f278e5414d5f167571b9f3f1ac4b244c /init | |
| parent | 4592599af36f50ed2d3502ed1b2374f5af6cb1ae (diff) | |
| download | linux-729abd2ba7007cc2be9e77718ba52d0866d3f60f.tar.bz2 | |
init/main.c: remove unused declaractions of mca_init() and sbus_init()
mca_init() no longer exists.
sbus_init() is defined in arch/sparc/kernel/sbus.c and is a subsys_initcall.
both are not needed in main.c any more.
Signed-off-by: Kang Hu <hukangustc@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'init')
| -rw-r--r-- | init/main.c | 2 | 
1 files changed, 0 insertions, 2 deletions
| diff --git a/init/main.c b/init/main.c index 3f1f4e4b61f7..2fd9cef70ee8 100644 --- a/init/main.c +++ b/init/main.c @@ -92,8 +92,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 radix_tree_init(void);  #ifndef CONFIG_DEBUG_RODATA  static inline void mark_rodata_ro(void) { } |