mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
214f2c90b9
These files were relying on module.h to come in via the path in an include/acpi header file, but we don't want to have instances of module.h being included from include/* files if it can be avoided. Have the files include export.h instead. Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
19 lines
406 B
C
19 lines
406 B
C
/*
|
|
* debugfs.c - ACPI debugfs interface to userspace.
|
|
*/
|
|
|
|
#include <linux/export.h>
|
|
#include <linux/init.h>
|
|
#include <linux/debugfs.h>
|
|
#include <acpi/acpi_drivers.h>
|
|
|
|
#define _COMPONENT ACPI_SYSTEM_COMPONENT
|
|
ACPI_MODULE_NAME("debugfs");
|
|
|
|
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);
|
|
}
|