Add SPDX license identifiers to all files which:
 - Have no license information of any form
 - Have MODULE_LICENCE("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
		
	
	
		
			488 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			488 B
		
	
	
	
		
			C
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0-only
 | |
| /*
 | |
|  * linux/lib/zlib_inflate/inflate_syms.c
 | |
|  *
 | |
|  * Exported symbols for the inflate functionality.
 | |
|  *
 | |
|  */
 | |
| 
 | |
| #include <linux/module.h>
 | |
| #include <linux/init.h>
 | |
| 
 | |
| #include <linux/zlib.h>
 | |
| 
 | |
| EXPORT_SYMBOL(zlib_inflate_workspacesize);
 | |
| EXPORT_SYMBOL(zlib_inflate);
 | |
| EXPORT_SYMBOL(zlib_inflateInit2);
 | |
| EXPORT_SYMBOL(zlib_inflateEnd);
 | |
| EXPORT_SYMBOL(zlib_inflateReset);
 | |
| EXPORT_SYMBOL(zlib_inflateIncomp); 
 | |
| EXPORT_SYMBOL(zlib_inflate_blob);
 | |
| MODULE_LICENSE("GPL");
 |