Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
awilliam
GitHub Repository: awilliam/linux-vfio
Path: blob/master/drivers/acpi/debugfs.c
15109 views
1
/*
2
* debugfs.c - ACPI debugfs interface to userspace.
3
*/
4
5
#include <linux/init.h>
6
#include <linux/debugfs.h>
7
#include <acpi/acpi_drivers.h>
8
9
#define _COMPONENT ACPI_SYSTEM_COMPONENT
10
ACPI_MODULE_NAME("debugfs");
11
12
struct dentry *acpi_debugfs_dir;
13
EXPORT_SYMBOL_GPL(acpi_debugfs_dir);
14
15
void __init acpi_debugfs_init(void)
16
{
17
acpi_debugfs_dir = debugfs_create_dir("acpi", NULL);
18
}
19
20