cregit-Linux how code gets into the kernel

Release 4.10 drivers/acpi/debugfs.c

Directory: drivers/acpi
/*
 * debugfs.c - ACPI debugfs interface to userspace.
 */

#include <linux/export.h>
#include <linux/init.h>
#include <linux/debugfs.h>
#include <linux/acpi.h>

#include "internal.h"


#define _COMPONENT		ACPI_SYSTEM_COMPONENT
ACPI_MODULE_NAME("debugfs");


struct dentry *acpi_debugfs_dir;

EXPORT_SYMBOL_GPL(acpi_debugfs_dir);


void __init acpi_debugfs_init(void) { acpi_debugfs_dir = debugfs_create_dir("acpi", NULL); }

Contributors

PersonTokensPropCommitsCommitProp
thomas renningerthomas renninger1376.47%150.00%
rui zhangrui zhang423.53%150.00%
Total17100.00%2100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
rui zhangrui zhang2548.08%116.67%
thomas renningerthomas renninger2038.46%233.33%
nicolas ioossnicolas iooss35.77%116.67%
paul gortmakerpaul gortmaker35.77%116.67%
lv zhenglv zheng11.92%116.67%
Total52100.00%6100.00%
Directory: drivers/acpi
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.