Release 4.11 drivers/base/init.c
/*
* 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>
#include "base.h"
/**
* 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 */
devtmpfs_init();
devices_init();
buses_init();
classes_init();
firmware_init();
hypervisor_init();
/* 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();
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Patrick Mochel | 27 | 62.79% | 2 | 25.00% |
Kay Sievers | 3 | 6.98% | 1 | 12.50% |
Dave Hansen | 3 | 6.98% | 1 | 12.50% |
Sudeep Holla | 3 | 6.98% | 1 | 12.50% |
Rafael J. Wysocki | 3 | 6.98% | 1 | 12.50% |
Michael Holzheu | 3 | 6.98% | 1 | 12.50% |
Dmitry Torokhov | 1 | 2.33% | 1 | 12.50% |
Total | 43 | 100.00% | 8 | 100.00% |
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Patrick Mochel | 33 | 55.00% | 2 | 20.00% |
Sudeep Holla | 6 | 10.00% | 1 | 10.00% |
Dave Hansen | 6 | 10.00% | 1 | 10.00% |
Ben Dooks | 3 | 5.00% | 1 | 10.00% |
Rafael J. Wysocki | 3 | 5.00% | 1 | 10.00% |
Kay Sievers | 3 | 5.00% | 1 | 10.00% |
Michael Holzheu | 3 | 5.00% | 1 | 10.00% |
Greg Kroah-Hartman | 2 | 3.33% | 1 | 10.00% |
Dmitry Torokhov | 1 | 1.67% | 1 | 10.00% |
Total | 60 | 100.00% | 10 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.