Merge branch 'master' of git://git.linux-mips.org/pub/scm/ralf/upstream-linus
[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 7#include <linux/debugfs.h>
8b48463f 8#include <linux/acpi.h>
a25ee920
ZR
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.271759 seconds and 5 git commands to generate.