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

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'spdx-5.3-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx

Pull SPDX fixes from Greg KH:
"Here are four small SPDX fixes for 5.3-rc5.

A few style fixes for some SPDX comments, added an SPDX tag for one
file, and fix up some GPL boilerplate for another file.

All of these have been in linux-next for a few weeks with no reported
issues (they are comment changes only, so that's to be expected...)"

* tag 'spdx-5.3-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx:
i2c: stm32: Use the correct style for SPDX License Identifier
intel_th: Use the correct style for SPDX License Identifier
coccinelle: api/atomic_as_refcounter: add SPDX License Identifier
kernel/configs: Replace GPL boilerplate code with SPDX identifier

+4 -17
+1 -1
drivers/hwtracing/intel_th/msu.h
··· 1 - // SPDX-License-Identifier: GPL-2.0 1 + /* SPDX-License-Identifier: GPL-2.0 */ 2 2 /* 3 3 * Intel(R) Trace Hub Memory Storage Unit (MSU) data structures 4 4 *
+1 -1
drivers/hwtracing/intel_th/pti.h
··· 1 - // SPDX-License-Identifier: GPL-2.0 1 + /* SPDX-License-Identifier: GPL-2.0 */ 2 2 /* 3 3 * Intel(R) Trace Hub PTI output data structures 4 4 *
+1 -15
kernel/configs.c
··· 1 + // SPDX-License-Identifier: GPL-2.0-or-later 1 2 /* 2 3 * kernel/configs.c 3 4 * Echo the kernel .config file used to build the kernel ··· 7 6 * Copyright (C) 2002 Randy Dunlap <rdunlap@xenotime.net> 8 7 * Copyright (C) 2002 Al Stone <ahs3@fc.hp.com> 9 8 * Copyright (C) 2002 Hewlett-Packard Company 10 - * 11 - * This program is free software; you can redistribute it and/or modify 12 - * it under the terms of the GNU General Public License as published by 13 - * the Free Software Foundation; either version 2 of the License, or (at 14 - * your option) any later version. 15 - * 16 - * This program is distributed in the hope that it will be useful, but 17 - * WITHOUT ANY WARRANTY; without even the implied warranty of 18 - * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or 19 - * NON INFRINGEMENT. See the GNU General Public License for more 20 - * details. 21 - * 22 - * You should have received a copy of the GNU General Public License 23 - * along with this program; if not, write to the Free Software 24 - * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 25 9 */ 26 10 27 11 #include <linux/kernel.h>
+1
scripts/coccinelle/api/atomic_as_refcounter.cocci
··· 1 + // SPDX-License-Identifier: GPL-2.0-only 1 2 // Check if refcount_t type and API should be used 2 3 // instead of atomic_t type when dealing with refcounters 3 4 //