Files

20 lines
391 B
C
Raw Permalink Normal View History

// SPDX-License-Identifier: GPL-2.0-only
2010-07-15 10:46:15 +08:00
/*
* debugfs.c - ACPI debugfs interface to userspace.
*/
#include <linux/export.h>
2010-07-15 10:46:15 +08:00
#include <linux/init.h>
#include <linux/debugfs.h>
#include <linux/acpi.h>
2010-07-15 10:46:15 +08:00
2015-08-01 21:32:17 +08:00
#include "internal.h"
2011-05-26 12:26:23 +02:00
struct dentry *acpi_debugfs_dir;
EXPORT_SYMBOL_GPL(acpi_debugfs_dir);
2010-07-15 10:46:15 +08:00
2011-05-26 12:26:23 +02:00
void __init acpi_debugfs_init(void)
{
acpi_debugfs_dir = debugfs_create_dir("acpi", NULL);
2010-07-15 10:46:15 +08:00
}