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

lib/math/int_log: Replace LGPL-2.1-or-later boilerplate with SPDX identifier

Replace license boilerplate in udftime.c with SPDX identifier for
LGPL-2.1-or-later.

Acked-by: Mauro Carvalho Chehab <mchehab@kernel.org>
Link: https://lore.kernel.org/r/20230619172019.21457-4-andriy.shevchenko@linux.intel.com
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20230703135211.87416-4-andriy.shevchenko@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>

authored by

Andy Shevchenko and committed by
Mark Brown
9ab04d7e 08f6a14b

+2 -20
+1 -10
include/linux/int_log.h
··· 1 + /* SPDX-License-Identifier: LGPL-2.1-or-later */ 1 2 /* 2 3 * Provides fixed-point logarithm operations. 3 4 * 4 5 * Copyright (C) 2006 Christoph Pfister (christophpfister@gmail.com) 5 - * 6 - * This library is free software; you can redistribute it and/or modify 7 - * it under the terms of the GNU Lesser General Public License as 8 - * published by the Free Software Foundation; either version 2.1 of 9 - * the License, or (at your option) any later version. 10 - * 11 - * This program is distributed in the hope that it will be useful, 12 - * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 - * GNU Lesser General Public License for more details. 15 6 */ 16 7 17 8 #ifndef __LINUX_INT_LOG_H
+1 -10
lib/math/int_log.c
··· 1 + // SPDX-License-Identifier: LGPL-2.1-or-later 1 2 /* 2 3 * Provides fixed-point logarithm operations. 3 4 * 4 5 * Copyright (C) 2006 Christoph Pfister (christophpfister@gmail.com) 5 - * 6 - * This library is free software; you can redistribute it and/or modify 7 - * it under the terms of the GNU Lesser General Public License as 8 - * published by the Free Software Foundation; either version 2.1 of 9 - * the License, or (at your option) any later version. 10 - * 11 - * This program is distributed in the hope that it will be useful, 12 - * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 - * GNU Lesser General Public License for more details. 15 6 */ 16 7 17 8 #include <linux/bitops.h>