2005-04-16 18:20:36 -04:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* 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>
|
2005-10-29 21:16:54 -04:00
|
|
|
#include <linux/memory.h>
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2005-10-13 12:54:41 -04:00
|
|
|
#include "base.h"
|
|
|
|
|
2005-04-16 18:20:36 -04:00
|
|
|
/**
|
|
|
|
* 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();
|
|
|
|
|
|
|
|
/* These are also core pieces, but must come after the
|
|
|
|
* core core pieces.
|
|
|
|
*/
|
|
|
|
platform_bus_init();
|
|
|
|
system_bus_init();
|
|
|
|
cpu_dev_init();
|
2005-10-29 21:16:54 -04:00
|
|
|
memory_dev_init();
|
2005-04-16 18:20:36 -04:00
|
|
|
attribute_container_init();
|
|
|
|
}
|