]>
Commit | Line | Data |
---|---|---|
a25ee920 ZR |
1 | /* |
2 | * debugfs.c - ACPI debugfs interface to userspace. | |
3 | */ | |
4 | ||
214f2c90 | 5 | #include <linux/export.h> |
a25ee920 | 6 | #include <linux/init.h> |
a25ee920 ZR |
7 | #include <linux/debugfs.h> |
8 | #include <acpi/acpi_drivers.h> | |
9 | ||
10 | #define _COMPONENT ACPI_SYSTEM_COMPONENT | |
11 | ACPI_MODULE_NAME("debugfs"); | |
12 | ||
aecad432 | 13 | struct dentry *acpi_debugfs_dir; |
526b4af4 | 14 | EXPORT_SYMBOL_GPL(acpi_debugfs_dir); |
aecad432 TR |
15 | |
16 | void __init acpi_debugfs_init(void) | |
17 | { | |
18 | acpi_debugfs_dir = debugfs_create_dir("acpi", NULL); | |
a25ee920 | 19 | } |