blob: 182a9fc363553d5ef7372ad253fe06b449c0da96 [file] [log] [blame]
Zhang Ruia25ee922010-07-15 10:46:15 +08001/*
2 * debugfs.c - ACPI debugfs interface to userspace.
3 */
4
5#include <linux/init.h>
Zhang Ruia25ee922010-07-15 10:46:15 +08006#include <linux/debugfs.h>
7#include <acpi/acpi_drivers.h>
8
9#define _COMPONENT ACPI_SYSTEM_COMPONENT
10ACPI_MODULE_NAME("debugfs");
11
Thomas Renningeraecad4322011-05-26 12:26:23 +020012struct dentry *acpi_debugfs_dir;
Thomas Renninger526b4af2011-05-26 12:26:24 +020013EXPORT_SYMBOL_GPL(acpi_debugfs_dir);
Zhang Ruia25ee922010-07-15 10:46:15 +080014
Thomas Renningeraecad4322011-05-26 12:26:23 +020015void __init acpi_debugfs_init(void)
16{
17 acpi_debugfs_dir = debugfs_create_dir("acpi", NULL);
Zhang Ruia25ee922010-07-15 10:46:15 +080018}