blob: b55d6a20dc0eda9a78419f29bb8eb229cc157930 [file] [log] [blame]
yuezonghe824eb0c2024-06-27 02:32:26 -07001/*
2 * debugfs.c - ACPI debugfs interface to userspace.
3 */
4
5#include <linux/export.h>
6#include <linux/init.h>
7#include <linux/debugfs.h>
8#include <acpi/acpi_drivers.h>
9
10#define _COMPONENT ACPI_SYSTEM_COMPONENT
11ACPI_MODULE_NAME("debugfs");
12
13struct dentry *acpi_debugfs_dir;
14EXPORT_SYMBOL_GPL(acpi_debugfs_dir);
15
16void __init acpi_debugfs_init(void)
17{
18 acpi_debugfs_dir = debugfs_create_dir("acpi", NULL);
19}