init.c 723 字节
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11
/*
 *
 * Copyright (c) 2002-3 Patrick Mochel
 * Copyright (c) 2002-3 Open Source Development Labs
 *
 * This file is released under the GPLv2
 *
 */

#include <linux/device.h>
#include <linux/init.h>
12
#include <linux/memory.h>
L
Linus Torvalds 已提交
13

14 15
#include "base.h"

L
Linus Torvalds 已提交
16 17 18 19 20 21 22 23 24 25 26 27 28 29
/**
 *	driver_init - initialize driver model.
 *
 *	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 */
	devices_init();
	buses_init();
	classes_init();
	firmware_init();
30
	hypervisor_init();
L
Linus Torvalds 已提交
31 32 33 34 35 36 37

	/* These are also core pieces, but must come after the
	 * core core pieces.
	 */
	platform_bus_init();
	system_bus_init();
	cpu_dev_init();
38
	memory_dev_init();
L
Linus Torvalds 已提交
39
}