X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=drivers%2Fbase%2Finit.c;h=7bd9b6a5b01f9497fcb2c35fccae144860299f93;hb=2ddfd20e7c55421435cbf95a5ed3dd6e423cf934;hp=84e604e25c4f4dc717ed377e2edefe0998e12cb8;hpb=84860bf0644d7c45afe7ddbd30731c3e3c371fae;p=linux-2.6 diff --git a/drivers/base/init.c b/drivers/base/init.c index 84e604e25c..7bd9b6a5b0 100644 --- a/drivers/base/init.c +++ b/drivers/base/init.c @@ -1,24 +1,22 @@ /* - * * Copyright (c) 2002-3 Patrick Mochel * Copyright (c) 2002-3 Open Source Development Labs * * This file is released under the GPLv2 - * */ #include #include +#include #include "base.h" /** - * driver_init - initialize driver model. + * driver_init - initialize driver model. * - * Call the driver model init functions to initialize their - * subsystems. Called early from init/main.c. + * Call the driver model init functions to initialize their + * subsystems. Called early from init/main.c. */ - void __init driver_init(void) { /* These are the core pieces */ @@ -26,6 +24,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. @@ -33,5 +32,5 @@ void __init driver_init(void) platform_bus_init(); system_bus_init(); cpu_dev_init(); - attribute_container_init(); + memory_dev_init(); }