mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	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);
 | 
						|
}
 |