mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-28 23:24:50 +00:00
d0611c6e02
The _COMPONENT and ACPI_MODULE_NAME() were not used even when the debugfs.c was introduced, remove them. Signed-off-by: Hanjun Guo <guohanjun@huawei.com> [ rjw: Subject and changelog edits ] Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
19 lines
391 B
C
19 lines
391 B
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* debugfs.c - ACPI debugfs interface to userspace.
|
|
*/
|
|
|
|
#include <linux/export.h>
|
|
#include <linux/init.h>
|
|
#include <linux/debugfs.h>
|
|
#include <linux/acpi.h>
|
|
|
|
#include "internal.h"
|
|
|
|
struct dentry *acpi_debugfs_dir;
|
|
EXPORT_SYMBOL_GPL(acpi_debugfs_dir);
|
|
|
|
void __init acpi_debugfs_init(void)
|
|
{
|
|
acpi_debugfs_dir = debugfs_create_dir("acpi", NULL);
|
|
}
|