X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=drivers%2Fbase%2Finit.c;h=37138154f9e824b353f322022ba8c41017ae3c3e;hb=467c432a4d63349025d92f5dbdd0b9ba8ff40fd5;hp=a76ae5a221f3e5cbb8a5475de4f5e03c6797c31a;hpb=1da177e4c3f41524e886b7f1b8a0c1fc7321cac2;p=linux-2.6 diff --git a/drivers/base/init.c b/drivers/base/init.c index a76ae5a221..37138154f9 100644 --- a/drivers/base/init.c +++ b/drivers/base/init.c @@ -9,15 +9,10 @@ #include #include +#include + +#include "base.h" -extern int devices_init(void); -extern int buses_init(void); -extern int classes_init(void); -extern int firmware_init(void); -extern int platform_bus_init(void); -extern int system_bus_init(void); -extern int cpu_dev_init(void); -extern int attribute_container_init(void); /** * driver_init - initialize driver model. * @@ -32,6 +27,7 @@ void __init driver_init(void) buses_init(); classes_init(); firmware_init(); + hypervisor_init(); /* These are also core pieces, but must come after the * core core pieces. @@ -39,5 +35,6 @@ void __init driver_init(void) platform_bus_init(); system_bus_init(); cpu_dev_init(); + memory_dev_init(); attribute_container_init(); }