cregit-Linux how code gets into the kernel

Release 4.7 drivers/base/init.c

Directory: drivers/base
/*
 * 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

PersonTokensPropCommitsCommitProp
patrick mochelpatrick mochel2762.79%225.00%
rafael j. wysockirafael j. wysocki36.98%112.50%
sudeep hollasudeep holla36.98%112.50%
kay sieverskay sievers36.98%112.50%
michael holzheumichael holzheu36.98%112.50%
dave hansendave hansen36.98%112.50%
dmitry torokhovdmitry torokhov12.33%112.50%
Total43100.00%8100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
patrick mochelpatrick mochel3355.00%220.00%
sudeep hollasudeep holla610.00%110.00%
dave hansendave hansen610.00%110.00%
rafael j. wysockirafael j. wysocki35.00%110.00%
ben dooksben dooks35.00%110.00%
michael holzheumichael holzheu35.00%110.00%
kay sieverskay sievers35.00%110.00%
greg kroah-hartmangreg kroah-hartman23.33%110.00%
dmitry torokhovdmitry torokhov11.67%110.00%
Total60100.00%10100.00%
Directory: drivers/base
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}