Message ID | 20230511133406.78155-11-bagasdotme@gmail.com (mailing list archive) |
---|---|
State | Changes Requested |
Headers | show |
Series | Treewide GPL SPDX conversion (love letter to Didi) | expand |
Context | Check | Description |
---|---|---|
netdev/series_format | success | Posting correctly formatted |
netdev/tree_selection | success | Guessed tree name to be net-next |
netdev/fixes_present | success | Fixes tag not required for -next series |
netdev/header_inline | success | No static functions without inline keyword in header files |
netdev/build_32bit | success | Errors and warnings before: 11 this patch: 11 |
netdev/cc_maintainers | success | CCed 1 of 1 maintainers |
netdev/build_clang | success | Errors and warnings before: 11 this patch: 11 |
netdev/verify_signedoff | success | Signed-off-by tag matches author and committer |
netdev/deprecated_api | success | None detected |
netdev/check_selftest | success | No net selftest shell script |
netdev/verify_fixes | success | No Fixes tag |
netdev/build_allmodconfig_warn | success | Errors and warnings before: 11 this patch: 11 |
netdev/checkpatch | success | total: 0 errors, 0 warnings, 0 checks, 12 lines checked |
netdev/kdoc | success | Errors and warnings before: 0 this patch: 0 |
netdev/source_inline | success | Was 0 now: 0 |
On Thu, May 11, 2023 at 08:34:06PM +0700, Bagas Sanjaya wrote: > Replace unversioned GPL license notice with appropriate SPDX > identifier, which is GPL 1.0+. > > Signed-off-by: Bagas Sanjaya <bagasdotme@gmail.com> Reviewed-by: Simon Horman <simon.horman@corigine.com>
Hi Bagas,
kernel test robot noticed the following build warnings:
[auto build test WARNING on ac9a78681b921877518763ba0e89202254349d1b]
url: https://github.com/intel-lab-lkp/linux/commits/Bagas-Sanjaya/agp-amd64-Remove-GPL-distribution-notice/20230511-214307
base: ac9a78681b921877518763ba0e89202254349d1b
patch link: https://lore.kernel.org/r/20230511133406.78155-11-bagasdotme%40gmail.com
patch subject: [PATCH 10/10] include: synclink: Replace GPL license notice with SPDX identifier
reproduce:
scripts/spdxcheck.py
If you fix the issue, kindly add following tag where applicable
| Reported-by: kernel test robot <lkp@intel.com>
| Link: https://lore.kernel.org/oe-kbuild-all/202305121302.dCL8lmbx-lkp@intel.com/
spdxcheck warnings: (new ones prefixed by >>)
drivers/pcmcia/cirrus.h: 1:44 Invalid License ID: MPL
drivers/pcmcia/pd6729.c: 1:28 Invalid License ID: GPL-1.0-or-later
drivers/watchdog/ibmasr.c: 1:28 Invalid License ID: GPL-1.0-or-later
drivers/watchdog/sb_wdog.c: 1:28 Invalid License ID: GPL-1.0
fs/udf/ecma_167.h: 1:44 Invalid License ID: GPL-1.0-only
fs/udf/osta_udf.h: 1:44 Invalid License ID: GPL-1.0-only
>> include/linux/synclink.h: 1:28 Invalid License ID: GPL-1.0-or-later
include/net/bonding.h: 1:28 Invalid License ID: GPL-1.0-or-later
drivers/isdn/mISDN/dsp_audio.c: 1:28 Invalid License ID: GPL-1.0-or-later
drivers/isdn/mISDN/dsp_blowfish.c: 1:28 Invalid License ID: GPL-1.0-or-later
drivers/isdn/mISDN/dsp_cmx.c: 1:28 Invalid License ID: GPL-1.0-or-later
drivers/isdn/mISDN/dsp_core.c: 1:28 Invalid License ID: GPL-1.0-or-later
drivers/isdn/mISDN/dsp_dtmf.c: 1:28 Invalid License ID: GPL-1.0-or-later
drivers/isdn/mISDN/dsp_tones.c: 1:28 Invalid License ID: GPL-1.0-or-later
drivers/net/bonding/bond_main.c: 1:28 Invalid License ID: GPL-1.0-or-later
drivers/net/bonding/bonding_priv.h: 1:28 Invalid License ID: GPL-1.0-or-later
drivers/net/ethernet/8390/8390.h: 1:28 Invalid License ID: GPL-1.0-or-later
drivers/net/ethernet/8390/apne.c: 1:28 Invalid License ID: GPL-1.0-or-later
drivers/net/ethernet/8390/axnet_cs.c: 1:28 Invalid License ID: GPL-1.0-or-later
drivers/net/ethernet/8390/hydra.c: 1:28 Invalid License ID: GPL-1.0-only
drivers/net/ethernet/8390/lib8390.c: 1:28 Invalid License ID: GPL-1.0-or-later
drivers/net/ethernet/8390/mac8390.c: 1:28 Invalid License ID: GPL-1.0-or-later
drivers/net/ethernet/8390/ne.c: 1:28 Invalid License ID: GPL-1.0-or-later
drivers/net/ethernet/8390/ne2k-pci.c: 1:28 Invalid License ID: GPL-1.0-or-later
drivers/net/ethernet/8390/pcnet_cs.c: 1:28 Invalid License ID: GPL-1.0-or-later
drivers/net/ethernet/8390/smc-ultra.c: 1:28 Invalid License ID: GPL-1.0-or-later
drivers/net/ethernet/8390/wd.c: 1:28 Invalid License ID: GPL-1.0-or-later
drivers/net/ethernet/i825xx/82596.c: 1:28 Invalid License ID: GPL-1.0-or-later
drivers/net/ethernet/i825xx/lasi_82596.c: 1:28 Invalid License ID: GPL-1.0-or-later
drivers/net/ethernet/i825xx/lib82596.c: 1:28 Invalid License ID: GPL-1.0-or-later
diff --git a/include/linux/synclink.h b/include/linux/synclink.h index f1405b1c71ba15..2c8436f08da44a 100644 --- a/include/linux/synclink.h +++ b/include/linux/synclink.h @@ -1,3 +1,4 @@ +/* SPDX-License-Identifier: GPL-1.0-or-later */ /* * SyncLink Multiprotocol Serial Adapter Driver * @@ -5,8 +6,6 @@ * * Copyright (C) 1998-2000 by Microgate Corporation * - * Redistribution of this file is permitted under - * the terms of the GNU Public License (GPL) */ #ifndef _SYNCLINK_H_ #define _SYNCLINK_H_
Replace unversioned GPL license notice with appropriate SPDX identifier, which is GPL 1.0+. Signed-off-by: Bagas Sanjaya <bagasdotme@gmail.com> --- include/linux/synclink.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)