mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-03 21:48:15 +00:00 
			
		
		
		
	As part of the main conversion a few files were missed.  These files had
additional whitespace after the '*' and before the SPDX tag and my
previous regex was too strict.  This time I did a grep for all SPDX tags
and then filtered out anything that matched the correct styles.
Fixes: 83d290c56fab ("SPDX: Convert all of our single license tags to Linux Kernel style")
Reported-by: Heinrich Schuchardt <xypron.debian@gmx.de>
Signed-off-by: Tom Rini <trini@konsulko.com>
		
	
			
		
			
				
	
	
		
			21 lines
		
	
	
		
			531 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			531 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0+ */
 | 
						|
/*
 | 
						|
 *  Portable Executable and Common Object Constants
 | 
						|
 *
 | 
						|
 *  Copyright (c) 2018 Heinrich Schuchardt
 | 
						|
 *
 | 
						|
 *  based on the "Microsoft Portable Executable and Common Object File Format
 | 
						|
 *  Specification", revision 11, 2017-01-23
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef _ASM_PE_H
 | 
						|
#define _ASM_PE_H
 | 
						|
 | 
						|
/* Subsystem type */
 | 
						|
#define IMAGE_SUBSYSTEM_EFI_APPLICATION		10
 | 
						|
#define IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER	11
 | 
						|
#define IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER	12
 | 
						|
#define IMAGE_SUBSYSTEM_EFI_ROM			13
 | 
						|
 | 
						|
#endif /* _ASM_PE_H */
 |