Merge tag 'mac80211-for-davem-2015-08-14' of git://git.kernel.org/pub/scm/linux/kerne...
[deliverable/linux.git] / drivers / acpi / debugfs.c
1 /*
2 * debugfs.c - ACPI debugfs interface to userspace.
3 */
4
5 #include <linux/export.h>
6 #include <linux/init.h>
7 #include <linux/debugfs.h>
8 #include <linux/acpi.h>
9
10 #define _COMPONENT ACPI_SYSTEM_COMPONENT
11 ACPI_MODULE_NAME("debugfs");
12
13 struct dentry *acpi_debugfs_dir;
14 EXPORT_SYMBOL_GPL(acpi_debugfs_dir);
15
16 void __init acpi_debugfs_init(void)
17 {
18 acpi_debugfs_dir = debugfs_create_dir("acpi", NULL);
19 }
This page took 0.030517 seconds and 5 git commands to generate.