Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs...
[linux-2.6-block.git] / drivers / acpi / debugfs.c
CommitLineData
a25ee920
ZR
1/*
2 * debugfs.c - ACPI debugfs interface to userspace.
3 */
4
5#include <linux/init.h>
a25ee920
ZR
6#include <linux/debugfs.h>
7#include <acpi/acpi_drivers.h>
8
9#define _COMPONENT ACPI_SYSTEM_COMPONENT
10ACPI_MODULE_NAME("debugfs");
11
aecad432 12struct dentry *acpi_debugfs_dir;
526b4af4 13EXPORT_SYMBOL_GPL(acpi_debugfs_dir);
aecad432
TR
14
15void __init acpi_debugfs_init(void)
16{
17 acpi_debugfs_dir = debugfs_create_dir("acpi", NULL);
a25ee920 18}