debugfs.c 380 B

12345678910111213141516171819
  1. /*
  2. * debugfs.c - ACPI debugfs interface to userspace.
  3. */
  4. #include <linux/init.h>
  5. #include <linux/debugfs.h>
  6. #include <acpi/acpi_drivers.h>
  7. #define _COMPONENT ACPI_SYSTEM_COMPONENT
  8. ACPI_MODULE_NAME("debugfs");
  9. struct dentry *acpi_debugfs_dir;
  10. EXPORT_SYMBOL_GPL(acpi_debugfs_dir);
  11. void __init acpi_debugfs_init(void)
  12. {
  13. acpi_debugfs_dir = debugfs_create_dir("acpi", NULL);
  14. }