mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-11-23 15:09:36 +00:00
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>
20 lines
418 B
C
20 lines
418 B
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* linux/lib/zlib_deflate/deflate_syms.c
|
|
*
|
|
* Exported symbols for the deflate functionality.
|
|
*
|
|
*/
|
|
|
|
#include <linux/module.h>
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/zlib.h>
|
|
|
|
EXPORT_SYMBOL(zlib_deflate_workspacesize);
|
|
EXPORT_SYMBOL(zlib_deflate);
|
|
EXPORT_SYMBOL(zlib_deflateInit2);
|
|
EXPORT_SYMBOL(zlib_deflateEnd);
|
|
EXPORT_SYMBOL(zlib_deflateReset);
|
|
MODULE_LICENSE("GPL");
|