Release 4.11 drivers/acpi/debugfs.c
/*
* 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
Person | Tokens | Prop | Commits | CommitProp |
Thomas Renninger | 13 | 76.47% | 1 | 50.00% |
Rui Zhang | 4 | 23.53% | 1 | 50.00% |
Total | 17 | 100.00% | 2 | 100.00% |
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Rui Zhang | 25 | 48.08% | 1 | 16.67% |
Thomas Renninger | 20 | 38.46% | 2 | 33.33% |
Paul Gortmaker | 3 | 5.77% | 1 | 16.67% |
Nicolas Iooss | 3 | 5.77% | 1 | 16.67% |
Lv Zheng | 1 | 1.92% | 1 | 16.67% |
Total | 52 | 100.00% | 6 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.