Centralized external definitions into include files and corrected
the file to conform to Linux coding practices. fixed word wrap
problems with patches.
using an embadded extern for void f(void) function seems pretty safe since
its called from init and has no parms.
Signed-off-by: Jeffrey Vernon Merkey ([email protected])
--- a/init/main.c 2008-08-04 15:53:53.000000000 -0600
+++ b/init/main.c 2008-08-04 15:49:51.000000000 -0600
@@ -660,6 +660,12 @@
pgtable_cache_init();
prio_tree_init();
anon_vma_init();
+#ifdef CONFIG_MDB
+ {
+ extern int mdb_init(void);
+ mdb_init();
+ }
+#endif
#ifdef CONFIG_X86
if (efi_enabled)
efi_enter_virtual_mode();