NTFS: Fix the definition of the CHKD ntfs record magic. It had an off by
[linux-2.6/libata-dev.git] / drivers / base / init.c
bloba76ae5a221f3e5cbb8a5475de4f5e03c6797c31a
1 /*
3 * Copyright (c) 2002-3 Patrick Mochel
4 * Copyright (c) 2002-3 Open Source Development Labs
6 * This file is released under the GPLv2
8 */
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);
21 /**
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 */
31 devices_init();
32 buses_init();
33 classes_init();
34 firmware_init();
36 /* These are also core pieces, but must come after the
37 * core core pieces.
39 platform_bus_init();
40 system_bus_init();
41 cpu_dev_init();
42 attribute_container_init();