Merge tag 'for-v3.11' of git://git.infradead.org/battery-2.6
[deliverable/linux.git] / drivers / acpi / debugfs.c
CommitLineData
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
11ACPI_MODULE_NAME("debugfs");
12
aecad432 13struct dentry *acpi_debugfs_dir;
526b4af4 14EXPORT_SYMBOL_GPL(acpi_debugfs_dir);
aecad432
TR
15
16void __init acpi_debugfs_init(void)
17{
18 acpi_debugfs_dir = debugfs_create_dir("acpi", NULL);
a25ee920 19}
This page took 0.189497 seconds and 5 git commands to generate.