Files

43 lines
875 B
C
Raw Permalink Normal View History

// SPDX-License-Identifier: GPL-2.0
2005-04-16 15:20:36 -07:00
/*
* Copyright (c) 2002-3 Patrick Mochel
* Copyright (c) 2002-3 Open Source Development Labs
*/
#include <linux/device.h>
#include <linux/init.h>
#include <linux/memory.h>
#include <linux/of.h>
#include <linux/backing-dev.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 */
bdi_init(&noop_backing_dev_info);
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.
*/
2018-06-21 15:37:37 +02:00
of_core_init();
2005-04-16 15:20:36 -07:00
platform_bus_init();
auxiliary_bus_init();
2005-04-16 15:20:36 -07:00
cpu_dev_init();
memory_dev_init();
node_dev_init();
container_dev_init();
2005-04-16 15:20:36 -07:00
}