Merge branch 'for-next-merge' of git://git.kernel.org/pub/scm/linux/kernel/git/nab...
[linux-2.6-block.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 7#include <linux/debugfs.h>
8b48463f 8#include <linux/acpi.h>
a25ee920 9
10742619
NI
10#include "internal.h"
11
a25ee920
ZR
12#define _COMPONENT ACPI_SYSTEM_COMPONENT
13ACPI_MODULE_NAME("debugfs");
14
aecad432 15struct dentry *acpi_debugfs_dir;
526b4af4 16EXPORT_SYMBOL_GPL(acpi_debugfs_dir);
aecad432
TR
17
18void __init acpi_debugfs_init(void)
19{
20 acpi_debugfs_dir = debugfs_create_dir("acpi", NULL);
a25ee920 21}