Release 4.7 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 | patrick mochel | 27 | 62.79% | 2 | 25.00% |
rafael j. wysocki | rafael j. wysocki | 3 | 6.98% | 1 | 12.50% |
sudeep holla | sudeep holla | 3 | 6.98% | 1 | 12.50% |
kay sievers | kay sievers | 3 | 6.98% | 1 | 12.50% |
michael holzheu | michael holzheu | 3 | 6.98% | 1 | 12.50% |
dave hansen | dave hansen | 3 | 6.98% | 1 | 12.50% |
dmitry torokhov | dmitry torokhov | 1 | 2.33% | 1 | 12.50% |
| Total | 43 | 100.00% | 8 | 100.00% |
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
patrick mochel | patrick mochel | 33 | 55.00% | 2 | 20.00% |
sudeep holla | sudeep holla | 6 | 10.00% | 1 | 10.00% |
dave hansen | dave hansen | 6 | 10.00% | 1 | 10.00% |
rafael j. wysocki | rafael j. wysocki | 3 | 5.00% | 1 | 10.00% |
ben dooks | ben dooks | 3 | 5.00% | 1 | 10.00% |
michael holzheu | michael holzheu | 3 | 5.00% | 1 | 10.00% |
kay sievers | kay sievers | 3 | 5.00% | 1 | 10.00% |
greg kroah-hartman | greg kroah-hartman | 2 | 3.33% | 1 | 10.00% |
dmitry torokhov | 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.