From b3e1e21c659185d3da71d897003af2c2d25aad77 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 19 Nov 2024 14:51:42 +0100 Subject: [PATCH] arch/z16: migrate to SPDX identifier Most tools used for compliance and SBOM generation use SPDX identifiers This change brings us a step closer to an easy SBOM generation. --- arch/z16/include/arch.h | 2 ++ arch/z16/include/inttypes.h | 2 ++ arch/z16/include/irq.h | 2 ++ arch/z16/include/limits.h | 2 ++ arch/z16/include/syscall.h | 2 ++ arch/z16/include/types.h | 2 ++ arch/z16/include/z16f/arch.h | 2 ++ arch/z16/include/z16f/chip.h | 2 ++ arch/z16/include/z16f/irq.h | 2 ++ arch/z16/src/Makefile | 2 ++ arch/z16/src/common/z16_allocateheap.c | 2 ++ arch/z16/src/common/z16_copystate.c | 2 ++ arch/z16/src/common/z16_createstack.c | 2 ++ arch/z16/src/common/z16_doirq.c | 2 ++ arch/z16/src/common/z16_exit.c | 2 ++ arch/z16/src/common/z16_idle.c | 2 ++ arch/z16/src/common/z16_initialize.c | 2 ++ arch/z16/src/common/z16_initialstate.c | 2 ++ arch/z16/src/common/z16_internal.h | 2 ++ arch/z16/src/common/z16_mdelay.c | 2 ++ arch/z16/src/common/z16_nputs.c | 2 ++ arch/z16/src/common/z16_registerdump.c | 2 ++ arch/z16/src/common/z16_releasestack.c | 2 ++ arch/z16/src/common/z16_schedulesigaction.c | 2 ++ arch/z16/src/common/z16_sigdeliver.c | 2 ++ arch/z16/src/common/z16_stackframe.c | 2 ++ arch/z16/src/common/z16_switchcontext.c | 2 ++ arch/z16/src/common/z16_udelay.c | 2 ++ arch/z16/src/common/z16_usestack.c | 2 ++ arch/z16/src/z16f/Make.defs | 2 ++ arch/z16/src/z16f/Toolchain.defs | 2 ++ arch/z16/src/z16f/chip.h | 2 ++ arch/z16/src/z16f/z16f_clkinit.c | 2 ++ arch/z16/src/z16f/z16f_espi.c | 2 ++ arch/z16/src/z16f/z16f_head.S | 3 ++- arch/z16/src/z16f/z16f_irq.c | 2 ++ arch/z16/src/z16f/z16f_lowuart.S | 3 ++- arch/z16/src/z16f/z16f_restoreusercontext.S | 2 ++ arch/z16/src/z16f/z16f_saveusercontext.S | 2 ++ arch/z16/src/z16f/z16f_serial.c | 2 ++ arch/z16/src/z16f/z16f_sysexec.c | 2 ++ arch/z16/src/z16f/z16f_timerisr.c | 2 ++ 42 files changed, 84 insertions(+), 2 deletions(-) diff --git a/arch/z16/include/arch.h b/arch/z16/include/arch.h index f6db60dc78..0bfe4ca5ea 100644 --- a/arch/z16/include/arch.h +++ b/arch/z16/include/arch.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/z16/include/arch.h * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/z16/include/inttypes.h b/arch/z16/include/inttypes.h index 4b2821c015..bcbec87765 100644 --- a/arch/z16/include/inttypes.h +++ b/arch/z16/include/inttypes.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/z16/include/inttypes.h * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/z16/include/irq.h b/arch/z16/include/irq.h index f4c13d098d..18c8f52037 100644 --- a/arch/z16/include/irq.h +++ b/arch/z16/include/irq.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/z16/include/irq.h * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/z16/include/limits.h b/arch/z16/include/limits.h index 9f39329716..e5f2db044e 100644 --- a/arch/z16/include/limits.h +++ b/arch/z16/include/limits.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/z16/include/limits.h * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/z16/include/syscall.h b/arch/z16/include/syscall.h index 954fa939f8..e573a075dd 100644 --- a/arch/z16/include/syscall.h +++ b/arch/z16/include/syscall.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/z16/include/syscall.h * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/z16/include/types.h b/arch/z16/include/types.h index e2719f5705..e7facd444b 100644 --- a/arch/z16/include/types.h +++ b/arch/z16/include/types.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/z16/include/types.h * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/z16/include/z16f/arch.h b/arch/z16/include/z16f/arch.h index 081675d1ec..e8cf513d17 100644 --- a/arch/z16/include/z16f/arch.h +++ b/arch/z16/include/z16f/arch.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/z16/include/z16f/arch.h * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/z16/include/z16f/chip.h b/arch/z16/include/z16f/chip.h index be552bd492..54449a92f0 100644 --- a/arch/z16/include/z16f/chip.h +++ b/arch/z16/include/z16f/chip.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/z16/include/z16f/chip.h * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/z16/include/z16f/irq.h b/arch/z16/include/z16f/irq.h index 0782cefe39..f896f65034 100644 --- a/arch/z16/include/z16f/irq.h +++ b/arch/z16/include/z16f/irq.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/z16/include/z16f/irq.h * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/z16/src/Makefile b/arch/z16/src/Makefile index 9abe2afb2c..043ecfd3aa 100644 --- a/arch/z16/src/Makefile +++ b/arch/z16/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # arch/z16/src/Makefile # +# SPDX-License-Identifier: Apache-2.0 +# # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. The diff --git a/arch/z16/src/common/z16_allocateheap.c b/arch/z16/src/common/z16_allocateheap.c index 8ecea3883e..6ece82daab 100644 --- a/arch/z16/src/common/z16_allocateheap.c +++ b/arch/z16/src/common/z16_allocateheap.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/z16/src/common/z16_allocateheap.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/z16/src/common/z16_copystate.c b/arch/z16/src/common/z16_copystate.c index c6d2240daa..e7a338a94b 100644 --- a/arch/z16/src/common/z16_copystate.c +++ b/arch/z16/src/common/z16_copystate.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/z16/src/common/z16_copystate.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/z16/src/common/z16_createstack.c b/arch/z16/src/common/z16_createstack.c index 2810ddab2d..84b64fb5d9 100644 --- a/arch/z16/src/common/z16_createstack.c +++ b/arch/z16/src/common/z16_createstack.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/z16/src/common/z16_createstack.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/z16/src/common/z16_doirq.c b/arch/z16/src/common/z16_doirq.c index a9ed9605e3..317f5700d8 100644 --- a/arch/z16/src/common/z16_doirq.c +++ b/arch/z16/src/common/z16_doirq.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/z16/src/common/z16_doirq.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/z16/src/common/z16_exit.c b/arch/z16/src/common/z16_exit.c index 21cc90d4e1..c254eb2f77 100644 --- a/arch/z16/src/common/z16_exit.c +++ b/arch/z16/src/common/z16_exit.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/z16/src/common/z16_exit.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/z16/src/common/z16_idle.c b/arch/z16/src/common/z16_idle.c index 9e17b9730a..5c24bd051d 100644 --- a/arch/z16/src/common/z16_idle.c +++ b/arch/z16/src/common/z16_idle.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/z16/src/common/z16_idle.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/z16/src/common/z16_initialize.c b/arch/z16/src/common/z16_initialize.c index 0ab242f602..8ec2bd3491 100644 --- a/arch/z16/src/common/z16_initialize.c +++ b/arch/z16/src/common/z16_initialize.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/z16/src/common/z16_initialize.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/z16/src/common/z16_initialstate.c b/arch/z16/src/common/z16_initialstate.c index 216823c1a6..f062f69c90 100644 --- a/arch/z16/src/common/z16_initialstate.c +++ b/arch/z16/src/common/z16_initialstate.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/z16/src/common/z16_initialstate.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/z16/src/common/z16_internal.h b/arch/z16/src/common/z16_internal.h index 5223c0b6c5..55d6980853 100644 --- a/arch/z16/src/common/z16_internal.h +++ b/arch/z16/src/common/z16_internal.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/z16/src/common/z16_internal.h * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/z16/src/common/z16_mdelay.c b/arch/z16/src/common/z16_mdelay.c index 1d0555ca9a..cc79d1dac1 100644 --- a/arch/z16/src/common/z16_mdelay.c +++ b/arch/z16/src/common/z16_mdelay.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/z16/src/common/z16_mdelay.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/z16/src/common/z16_nputs.c b/arch/z16/src/common/z16_nputs.c index 91f95b57b1..d86a887780 100644 --- a/arch/z16/src/common/z16_nputs.c +++ b/arch/z16/src/common/z16_nputs.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/z16/src/common/z16_nputs.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/z16/src/common/z16_registerdump.c b/arch/z16/src/common/z16_registerdump.c index cb34a531bc..13361a9f86 100644 --- a/arch/z16/src/common/z16_registerdump.c +++ b/arch/z16/src/common/z16_registerdump.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/z16/src/common/z16_registerdump.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/z16/src/common/z16_releasestack.c b/arch/z16/src/common/z16_releasestack.c index 30810aaf8c..a278b1cad9 100644 --- a/arch/z16/src/common/z16_releasestack.c +++ b/arch/z16/src/common/z16_releasestack.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/z16/src/common/z16_releasestack.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/z16/src/common/z16_schedulesigaction.c b/arch/z16/src/common/z16_schedulesigaction.c index 51cceea436..5a628ad586 100644 --- a/arch/z16/src/common/z16_schedulesigaction.c +++ b/arch/z16/src/common/z16_schedulesigaction.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/z16/src/common/z16_schedulesigaction.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/z16/src/common/z16_sigdeliver.c b/arch/z16/src/common/z16_sigdeliver.c index f0d037c8d7..f820350595 100644 --- a/arch/z16/src/common/z16_sigdeliver.c +++ b/arch/z16/src/common/z16_sigdeliver.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/z16/src/common/z16_sigdeliver.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/z16/src/common/z16_stackframe.c b/arch/z16/src/common/z16_stackframe.c index 0cfba483e7..66944be726 100644 --- a/arch/z16/src/common/z16_stackframe.c +++ b/arch/z16/src/common/z16_stackframe.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/z16/src/common/z16_stackframe.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/z16/src/common/z16_switchcontext.c b/arch/z16/src/common/z16_switchcontext.c index e703b996ff..5be35f03f3 100644 --- a/arch/z16/src/common/z16_switchcontext.c +++ b/arch/z16/src/common/z16_switchcontext.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/z16/src/common/z16_switchcontext.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/z16/src/common/z16_udelay.c b/arch/z16/src/common/z16_udelay.c index 02e078ad15..0cac8b3e09 100644 --- a/arch/z16/src/common/z16_udelay.c +++ b/arch/z16/src/common/z16_udelay.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/z16/src/common/z16_udelay.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/z16/src/common/z16_usestack.c b/arch/z16/src/common/z16_usestack.c index be07ef1cbc..3926a170ed 100644 --- a/arch/z16/src/common/z16_usestack.c +++ b/arch/z16/src/common/z16_usestack.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/z16/src/common/z16_usestack.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/z16/src/z16f/Make.defs b/arch/z16/src/z16f/Make.defs index be6288f0f6..d48204ad07 100644 --- a/arch/z16/src/z16f/Make.defs +++ b/arch/z16/src/z16f/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # arch/z16/src/z16f/Make.defs # +# SPDX-License-Identifier: Apache-2.0 +# # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. The diff --git a/arch/z16/src/z16f/Toolchain.defs b/arch/z16/src/z16f/Toolchain.defs index 9da2fb7869..14ec0f8a1d 100644 --- a/arch/z16/src/z16f/Toolchain.defs +++ b/arch/z16/src/z16f/Toolchain.defs @@ -1,6 +1,8 @@ ############################################################################ # arch/z16/src/z16f/Toolchain.defs # +# SPDX-License-Identifier: Apache-2.0 +# # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. The diff --git a/arch/z16/src/z16f/chip.h b/arch/z16/src/z16f/chip.h index 55b796b183..e763081f76 100644 --- a/arch/z16/src/z16f/chip.h +++ b/arch/z16/src/z16f/chip.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/z16/src/z16f/chip.h * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/z16/src/z16f/z16f_clkinit.c b/arch/z16/src/z16f/z16f_clkinit.c index 6e6dfe3211..afa3672bb6 100644 --- a/arch/z16/src/z16f/z16f_clkinit.c +++ b/arch/z16/src/z16f/z16f_clkinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/z16/src/z16f/z16f_clkinit.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/z16/src/z16f/z16f_espi.c b/arch/z16/src/z16f/z16f_espi.c index 5cc617eeee..9a441f2e84 100644 --- a/arch/z16/src/z16f/z16f_espi.c +++ b/arch/z16/src/z16f/z16f_espi.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/z16/src/z16f/z16f_espi.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/z16/src/z16f/z16f_head.S b/arch/z16/src/z16f/z16f_head.S index bcbf0a7689..94bb61154c 100644 --- a/arch/z16/src/z16f/z16f_head.S +++ b/arch/z16/src/z16f/z16f_head.S @@ -1,6 +1,7 @@ /************************************************************************** * arch/z16/src/z16f/z16f_head.S - * Z16F Reset Entry Point + * + * SPDX-License-Identifier: Apache-2.0 * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with diff --git a/arch/z16/src/z16f/z16f_irq.c b/arch/z16/src/z16f/z16f_irq.c index 38e90bf357..33c62f44f1 100644 --- a/arch/z16/src/z16f/z16f_irq.c +++ b/arch/z16/src/z16f/z16f_irq.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/z16/src/z16f/z16f_irq.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/z16/src/z16f/z16f_lowuart.S b/arch/z16/src/z16f/z16f_lowuart.S index c917111215..fb416e594a 100644 --- a/arch/z16/src/z16f/z16f_lowuart.S +++ b/arch/z16/src/z16f/z16f_lowuart.S @@ -1,6 +1,7 @@ /************************************************************************* * arch/z16/src/z16f/z16f_lowuart.asm - * Z16F UART management + * + * SPDX-License-Identifier: Apache-2.0 * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with diff --git a/arch/z16/src/z16f/z16f_restoreusercontext.S b/arch/z16/src/z16f/z16f_restoreusercontext.S index 75e6cfa684..94fc90b6d8 100644 --- a/arch/z16/src/z16f/z16f_restoreusercontext.S +++ b/arch/z16/src/z16f/z16f_restoreusercontext.S @@ -1,6 +1,8 @@ /************************************************************************* * arch/z16/src/z16f/z16f_restoreusercontext.asm * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/z16/src/z16f/z16f_saveusercontext.S b/arch/z16/src/z16f/z16f_saveusercontext.S index 37f9d34f49..a3a6cc4e2d 100644 --- a/arch/z16/src/z16f/z16f_saveusercontext.S +++ b/arch/z16/src/z16f/z16f_saveusercontext.S @@ -1,6 +1,8 @@ /************************************************************************* * arch/z16/src/z16f/z16f_saveusercontext.asm * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/z16/src/z16f/z16f_serial.c b/arch/z16/src/z16f/z16f_serial.c index 00009ea396..b45ad9dede 100644 --- a/arch/z16/src/z16f/z16f_serial.c +++ b/arch/z16/src/z16f/z16f_serial.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/z16/src/z16f/z16f_serial.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/z16/src/z16f/z16f_sysexec.c b/arch/z16/src/z16f/z16f_sysexec.c index 5d38d2a410..19294eaef6 100644 --- a/arch/z16/src/z16f/z16f_sysexec.c +++ b/arch/z16/src/z16f/z16f_sysexec.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/z16/src/z16f/z16f_sysexec.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/arch/z16/src/z16f/z16f_timerisr.c b/arch/z16/src/z16f/z16f_timerisr.c index 20cb006f12..e234637102 100644 --- a/arch/z16/src/z16f/z16f_timerisr.c +++ b/arch/z16/src/z16f/z16f_timerisr.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/z16/src/z16f/z16f_timerisr.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The