3 * Copyright (c) 2002-3 Patrick Mochel
4 * Copyright (c) 2002-3 Open Source Development Labs
6 * This file is released under the GPLv2
10 #include <linux/device.h>
11 #include <linux/init.h>
13 extern int devices_init(void);
14 extern int buses_init(void);
15 extern int classes_init(void);
16 extern int firmware_init(void);
17 extern int platform_bus_init(void);
18 extern int system_bus_init(void);
19 extern int cpu_dev_init(void);
20 extern int attribute_container_init(void);
22 * driver_init - initialize driver model.
24 * Call the driver model init functions to initialize their
25 * subsystems. Called early from init/main.c.
28 void __init driver_init(void)
30 /* These are the core pieces */
36 /* These are also core pieces, but must come after the
42 attribute_container_init();