Files
linux-apfs/drivers/base/init.c
T

40 lines
776 B
C
Raw Normal View History

2005-04-16 15:20:36 -07: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>
#include <linux/memory.h>
#include <linux/of.h>
2005-04-16 15:20:36 -07:00
2005-10-13 17:54:41 +01:00
#include "base.h"
2005-04-16 15:20:36 -07:00
/**
2008-01-24 22:50:12 -08:00
* driver_init - initialize driver model.
2005-04-16 15:20:36 -07:00
*
2008-01-24 22:50:12 -08:00
* Call the driver model init functions to initialize their
* subsystems. Called early from init/main.c.
2005-04-16 15:20:36 -07:00
*/
void __init driver_init(void)
{
/* These are the core pieces */
devtmpfs_init();
2005-04-16 15:20:36 -07:00
devices_init();
buses_init();
classes_init();
firmware_init();
hypervisor_init();
2005-04-16 15:20:36 -07:00
/* These are also core pieces, but must come after the
* core core pieces.
*/
platform_bus_init();
cpu_dev_init();
memory_dev_init();
container_dev_init();
of_core_init();
2005-04-16 15:20:36 -07:00
}