mirror of
				git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
				synced 2025-09-18 22:14:16 +00:00 
			
		
		
		
	 457c899653
			
		
	
	
		457c899653
		
	
	
	
	
		
			
			Add SPDX license identifiers to all files which: - Have no license information of any form - Have EXPORT_.*_SYMBOL_GPL inside which was used in the initial scan/conversion to ignore the file These files fall under the project license, GPL v2 only. The resulting SPDX license identifier is: GPL-2.0-only Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			463 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			463 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"
 | |
| 
 | |
| #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);
 | |
| }
 |