Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

fs/ntfs3: Remove GPL boilerplates from decompress lib files

Files already have SDPX identifier so no reason to keep boilerplates in
these files anymore.

Signed-off-by: Kari Argillander <kari.argillander@gmail.com>
Acked-by: Eric Biggers <ebiggers@kernel.org>
Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>

authored by

Kari Argillander and committed by
Konstantin Komarov
989e795b dd854e4b

-53
-13
fs/ntfs3/lib/decompress_common.c
··· 3 3 * decompress_common.c - Code shared by the XPRESS and LZX decompressors 4 4 * 5 5 * Copyright (C) 2015 Eric Biggers 6 - * 7 - * This program is free software: you can redistribute it and/or modify it under 8 - * the terms of the GNU General Public License as published by the Free Software 9 - * Foundation, either version 2 of the License, or (at your option) any later 10 - * version. 11 - * 12 - * This program is distributed in the hope that it will be useful, but WITHOUT 13 - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 14 - * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more 15 - * details. 16 - * 17 - * You should have received a copy of the GNU General Public License along with 18 - * this program. If not, see <http://www.gnu.org/licenses/>. 19 6 */ 20 7 21 8 #include "decompress_common.h"
-14
fs/ntfs3/lib/decompress_common.h
··· 1 1 /* SPDX-License-Identifier: GPL-2.0-or-later */ 2 - 3 2 /* 4 3 * decompress_common.h - Code shared by the XPRESS and LZX decompressors 5 4 * 6 5 * Copyright (C) 2015 Eric Biggers 7 - * 8 - * This program is free software: you can redistribute it and/or modify it under 9 - * the terms of the GNU General Public License as published by the Free Software 10 - * Foundation, either version 2 of the License, or (at your option) any later 11 - * version. 12 - * 13 - * This program is distributed in the hope that it will be useful, but WITHOUT 14 - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 15 - * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more 16 - * details. 17 - * 18 - * You should have received a copy of the GNU General Public License along with 19 - * this program. If not, see <http://www.gnu.org/licenses/>. 20 6 */ 21 7 22 8 #include <linux/string.h>
-13
fs/ntfs3/lib/lzx_decompress.c
··· 6 6 * this is the only size used in System Compression. 7 7 * 8 8 * Copyright (C) 2015 Eric Biggers 9 - * 10 - * This program is free software: you can redistribute it and/or modify it under 11 - * the terms of the GNU General Public License as published by the Free Software 12 - * Foundation, either version 2 of the License, or (at your option) any later 13 - * version. 14 - * 15 - * This program is distributed in the hope that it will be useful, but WITHOUT 16 - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 17 - * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more 18 - * details. 19 - * 20 - * You should have received a copy of the GNU General Public License along with 21 - * this program. If not, see <http://www.gnu.org/licenses/>. 22 9 */ 23 10 24 11 #include "decompress_common.h"
-13
fs/ntfs3/lib/xpress_decompress.c
··· 5 5 * based on the code from wimlib. 6 6 * 7 7 * Copyright (C) 2015 Eric Biggers 8 - * 9 - * This program is free software: you can redistribute it and/or modify it under 10 - * the terms of the GNU General Public License as published by the Free Software 11 - * Foundation, either version 2 of the License, or (at your option) any later 12 - * version. 13 - * 14 - * This program is distributed in the hope that it will be useful, but WITHOUT 15 - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 16 - * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more 17 - * details. 18 - * 19 - * You should have received a copy of the GNU General Public License along with 20 - * this program. If not, see <http://www.gnu.org/licenses/>. 21 8 */ 22 9 23 10 #include "decompress_common.h"