Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1/*
2 * debugfs.c - ACPI debugfs interface to userspace.
3 */
4
5#include <linux/init.h>
6#include <linux/debugfs.h>
7#include <acpi/acpi_drivers.h>
8
9#define _COMPONENT ACPI_SYSTEM_COMPONENT
10ACPI_MODULE_NAME("debugfs");
11
12struct dentry *acpi_debugfs_dir;
13EXPORT_SYMBOL_GPL(acpi_debugfs_dir);
14
15void __init acpi_debugfs_init(void)
16{
17 acpi_debugfs_dir = debugfs_create_dir("acpi", NULL);
18}