From 6e268f3c4586355ba1618abd55966e4c6bb1ec7a Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Mon, 2 Dec 2024 10:53:57 +0100 Subject: [PATCH] arch/ceva: 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. Signed-off-by: Alin Jerpelea --- arch/ceva/include/arch.h | 2 ++ arch/ceva/include/inttypes.h | 2 ++ arch/ceva/include/irq.h | 2 ++ arch/ceva/include/limits.h | 2 ++ arch/ceva/include/math.h | 2 ++ arch/ceva/include/spinlock.h | 2 ++ arch/ceva/include/stdarg.h | 2 ++ arch/ceva/include/syscall.h | 2 ++ arch/ceva/include/types.h | 2 ++ arch/ceva/include/xc5/irq.h | 2 ++ arch/ceva/include/xc5/math.h | 2 ++ arch/ceva/include/xc5/reg.h | 2 ++ arch/ceva/include/xc5/spinlock.h | 2 ++ arch/ceva/include/xm6/irq.h | 2 ++ arch/ceva/include/xm6/math.h | 2 ++ arch/ceva/include/xm6/reg.h | 2 ++ arch/ceva/include/xm6/spinlock.h | 2 ++ arch/ceva/src/Makefile | 2 ++ arch/ceva/src/common/ceva_board.c | 2 ++ arch/ceva/src/common/ceva_checkstack.c | 2 ++ arch/ceva/src/common/ceva_createstack.c | 2 ++ arch/ceva/src/common/ceva_doirq.c | 2 ++ arch/ceva/src/common/ceva_exit.c | 2 ++ arch/ceva/src/common/ceva_fork.c | 2 ++ arch/ceva/src/common/ceva_fullcontextrestore.c | 2 ++ arch/ceva/src/common/ceva_getintstack.c | 2 ++ arch/ceva/src/common/ceva_heap.c | 2 ++ arch/ceva/src/common/ceva_idle.c | 2 ++ arch/ceva/src/common/ceva_initialize.c | 2 ++ arch/ceva/src/common/ceva_internal.h | 2 ++ arch/ceva/src/common/ceva_modifyreg16.c | 2 ++ arch/ceva/src/common/ceva_modifyreg32.c | 2 ++ arch/ceva/src/common/ceva_modifyreg8.c | 2 ++ arch/ceva/src/common/ceva_nputs.c | 2 ++ arch/ceva/src/common/ceva_pthread_start.c | 2 ++ arch/ceva/src/common/ceva_registerdump.c | 2 ++ arch/ceva/src/common/ceva_releasestack.c | 2 ++ arch/ceva/src/common/ceva_saveusercontext.c | 2 ++ arch/ceva/src/common/ceva_schedulesigaction.c | 2 ++ arch/ceva/src/common/ceva_sigdeliver.c | 2 ++ arch/ceva/src/common/ceva_signal_dispatch.c | 2 ++ arch/ceva/src/common/ceva_stackframe.c | 2 ++ arch/ceva/src/common/ceva_start.c | 2 ++ arch/ceva/src/common/ceva_svcall.c | 2 ++ arch/ceva/src/common/ceva_switchcontext.c | 2 ++ arch/ceva/src/common/ceva_task_start.c | 2 ++ arch/ceva/src/common/ceva_userspace.c | 2 ++ arch/ceva/src/common/ceva_usestack.c | 2 ++ arch/ceva/src/common/mpu.h | 2 ++ arch/ceva/src/common/vintc.h | 2 ++ arch/ceva/src/xc5/Toolchain.defs | 2 ++ arch/ceva/src/xc5/cpm.S | 2 ++ arch/ceva/src/xc5/cpm.h | 2 ++ arch/ceva/src/xc5/fork.S | 2 ++ arch/ceva/src/xc5/psu.h | 2 ++ arch/ceva/src/xc5/syscall.S | 2 ++ arch/ceva/src/xc5/xc5_hardfault.c | 2 ++ arch/ceva/src/xc5/xc5_head.S | 2 ++ arch/ceva/src/xc5/xc5_icache.c | 2 ++ arch/ceva/src/xc5/xc5_initialstate.c | 2 ++ arch/ceva/src/xc5/xc5_intc.c | 2 ++ arch/ceva/src/xc5/xc5_mpu.c | 2 ++ arch/ceva/src/xc5/xc5_psu.c | 2 ++ arch/ceva/src/xc5/xc5_relocate.c | 2 ++ arch/ceva/src/xc5/xc5_signal_handler.S | 2 ++ arch/ceva/src/xc5/xc5_svcall_handler.S | 2 ++ arch/ceva/src/xm6/Toolchain.defs | 2 ++ arch/ceva/src/xm6/cpm.h | 2 ++ arch/ceva/src/xm6/fork.S | 2 ++ arch/ceva/src/xm6/syscall.S | 2 ++ arch/ceva/src/xm6/xm6_hardfault.c | 2 ++ arch/ceva/src/xm6/xm6_head.S | 2 ++ arch/ceva/src/xm6/xm6_icache.c | 2 ++ arch/ceva/src/xm6/xm6_initialstate.c | 2 ++ arch/ceva/src/xm6/xm6_intc.c | 2 ++ arch/ceva/src/xm6/xm6_mpu.c | 2 ++ arch/ceva/src/xm6/xm6_psu.c | 2 ++ arch/ceva/src/xm6/xm6_signal_handler.S | 2 ++ arch/ceva/src/xm6/xm6_svcall_handler.S | 2 ++ 79 files changed, 158 insertions(+) diff --git a/arch/ceva/include/arch.h b/arch/ceva/include/arch.h index 988286bc374..e157ea18a59 100644 --- a/arch/ceva/include/arch.h +++ b/arch/ceva/include/arch.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/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/ceva/include/inttypes.h b/arch/ceva/include/inttypes.h index ee1533d39c0..d542dd9b369 100644 --- a/arch/ceva/include/inttypes.h +++ b/arch/ceva/include/inttypes.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/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/ceva/include/irq.h b/arch/ceva/include/irq.h index fa60f14f106..5d2584ed6e4 100644 --- a/arch/ceva/include/irq.h +++ b/arch/ceva/include/irq.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/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/ceva/include/limits.h b/arch/ceva/include/limits.h index 42aa484075b..ca7b6f11d51 100644 --- a/arch/ceva/include/limits.h +++ b/arch/ceva/include/limits.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/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/ceva/include/math.h b/arch/ceva/include/math.h index e53b28cc739..868e59c5511 100644 --- a/arch/ceva/include/math.h +++ b/arch/ceva/include/math.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/include/math.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/ceva/include/spinlock.h b/arch/ceva/include/spinlock.h index de125f07bd5..773fa24e7bf 100644 --- a/arch/ceva/include/spinlock.h +++ b/arch/ceva/include/spinlock.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/include/spinlock.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/ceva/include/stdarg.h b/arch/ceva/include/stdarg.h index 60ebc732f35..e6dac275695 100644 --- a/arch/ceva/include/stdarg.h +++ b/arch/ceva/include/stdarg.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/include/stdarg.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/ceva/include/syscall.h b/arch/ceva/include/syscall.h index 19b7ab80c92..9877f68df9a 100644 --- a/arch/ceva/include/syscall.h +++ b/arch/ceva/include/syscall.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/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/ceva/include/types.h b/arch/ceva/include/types.h index c82e2f06862..40f5e23ab5e 100644 --- a/arch/ceva/include/types.h +++ b/arch/ceva/include/types.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/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/ceva/include/xc5/irq.h b/arch/ceva/include/xc5/irq.h index 0d413daccb7..9d87efbe6ed 100644 --- a/arch/ceva/include/xc5/irq.h +++ b/arch/ceva/include/xc5/irq.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/include/xc5/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/ceva/include/xc5/math.h b/arch/ceva/include/xc5/math.h index 12c350fbeea..7589bccc589 100644 --- a/arch/ceva/include/xc5/math.h +++ b/arch/ceva/include/xc5/math.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/include/xc5/math.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/ceva/include/xc5/reg.h b/arch/ceva/include/xc5/reg.h index 269af1dd7c4..329748da5f7 100644 --- a/arch/ceva/include/xc5/reg.h +++ b/arch/ceva/include/xc5/reg.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/include/xc5/reg.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/ceva/include/xc5/spinlock.h b/arch/ceva/include/xc5/spinlock.h index e766f90ca98..3c3a1807864 100644 --- a/arch/ceva/include/xc5/spinlock.h +++ b/arch/ceva/include/xc5/spinlock.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/include/xc5/spinlock.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/ceva/include/xm6/irq.h b/arch/ceva/include/xm6/irq.h index 44732f3d9e4..380f2570d45 100644 --- a/arch/ceva/include/xm6/irq.h +++ b/arch/ceva/include/xm6/irq.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/include/xm6/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/ceva/include/xm6/math.h b/arch/ceva/include/xm6/math.h index db105c42ec3..2affa1ce385 100644 --- a/arch/ceva/include/xm6/math.h +++ b/arch/ceva/include/xm6/math.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/include/xm6/math.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/ceva/include/xm6/reg.h b/arch/ceva/include/xm6/reg.h index 5c34b967f4a..2a9895dc89c 100644 --- a/arch/ceva/include/xm6/reg.h +++ b/arch/ceva/include/xm6/reg.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/include/xm6/reg.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/ceva/include/xm6/spinlock.h b/arch/ceva/include/xm6/spinlock.h index 2080689f2e0..65e2331fc0f 100644 --- a/arch/ceva/include/xm6/spinlock.h +++ b/arch/ceva/include/xm6/spinlock.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/include/xm6/spinlock.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/ceva/src/Makefile b/arch/ceva/src/Makefile index 810443dcbae..d7210aceed5 100644 --- a/arch/ceva/src/Makefile +++ b/arch/ceva/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # arch/ceva/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/ceva/src/common/ceva_board.c b/arch/ceva/src/common/ceva_board.c index b13588e7a84..24bf765c409 100644 --- a/arch/ceva/src/common/ceva_board.c +++ b/arch/ceva/src/common/ceva_board.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/common/ceva_board.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/ceva/src/common/ceva_checkstack.c b/arch/ceva/src/common/ceva_checkstack.c index eb0f295677d..15a47c512a4 100644 --- a/arch/ceva/src/common/ceva_checkstack.c +++ b/arch/ceva/src/common/ceva_checkstack.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/common/ceva_checkstack.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/ceva/src/common/ceva_createstack.c b/arch/ceva/src/common/ceva_createstack.c index 64c2eb134eb..d92b9d21aac 100644 --- a/arch/ceva/src/common/ceva_createstack.c +++ b/arch/ceva/src/common/ceva_createstack.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/common/ceva_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/ceva/src/common/ceva_doirq.c b/arch/ceva/src/common/ceva_doirq.c index f5131596166..1c3c6e8dd03 100644 --- a/arch/ceva/src/common/ceva_doirq.c +++ b/arch/ceva/src/common/ceva_doirq.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/common/ceva_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/ceva/src/common/ceva_exit.c b/arch/ceva/src/common/ceva_exit.c index b096ff491fb..8c1f89e5cf3 100644 --- a/arch/ceva/src/common/ceva_exit.c +++ b/arch/ceva/src/common/ceva_exit.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/common/ceva_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/ceva/src/common/ceva_fork.c b/arch/ceva/src/common/ceva_fork.c index c03bf4c47a5..78fc1915660 100644 --- a/arch/ceva/src/common/ceva_fork.c +++ b/arch/ceva/src/common/ceva_fork.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/common/ceva_fork.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/ceva/src/common/ceva_fullcontextrestore.c b/arch/ceva/src/common/ceva_fullcontextrestore.c index de8818f4443..1a8aa6223ed 100644 --- a/arch/ceva/src/common/ceva_fullcontextrestore.c +++ b/arch/ceva/src/common/ceva_fullcontextrestore.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/common/ceva_fullcontextrestore.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/ceva/src/common/ceva_getintstack.c b/arch/ceva/src/common/ceva_getintstack.c index 877eac7f66a..1d4c2f84636 100644 --- a/arch/ceva/src/common/ceva_getintstack.c +++ b/arch/ceva/src/common/ceva_getintstack.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/common/ceva_getintstack.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/ceva/src/common/ceva_heap.c b/arch/ceva/src/common/ceva_heap.c index 267aae3683c..6dd1d210b80 100644 --- a/arch/ceva/src/common/ceva_heap.c +++ b/arch/ceva/src/common/ceva_heap.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/common/ceva_heap.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/ceva/src/common/ceva_idle.c b/arch/ceva/src/common/ceva_idle.c index 01b51266e53..680e0ab376a 100644 --- a/arch/ceva/src/common/ceva_idle.c +++ b/arch/ceva/src/common/ceva_idle.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/common/ceva_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/ceva/src/common/ceva_initialize.c b/arch/ceva/src/common/ceva_initialize.c index 8dc7dee4340..183f4f8d9da 100644 --- a/arch/ceva/src/common/ceva_initialize.c +++ b/arch/ceva/src/common/ceva_initialize.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/common/ceva_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/ceva/src/common/ceva_internal.h b/arch/ceva/src/common/ceva_internal.h index 8c07a858d7b..dbe86a11638 100644 --- a/arch/ceva/src/common/ceva_internal.h +++ b/arch/ceva/src/common/ceva_internal.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/common/ceva_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/ceva/src/common/ceva_modifyreg16.c b/arch/ceva/src/common/ceva_modifyreg16.c index 654c7c53898..96baed1dad6 100644 --- a/arch/ceva/src/common/ceva_modifyreg16.c +++ b/arch/ceva/src/common/ceva_modifyreg16.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/common/ceva_modifyreg16.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/ceva/src/common/ceva_modifyreg32.c b/arch/ceva/src/common/ceva_modifyreg32.c index a6ac6f3f254..af64f365f4b 100644 --- a/arch/ceva/src/common/ceva_modifyreg32.c +++ b/arch/ceva/src/common/ceva_modifyreg32.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/common/ceva_modifyreg32.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/ceva/src/common/ceva_modifyreg8.c b/arch/ceva/src/common/ceva_modifyreg8.c index 020bce8159b..c0c1c78beb1 100644 --- a/arch/ceva/src/common/ceva_modifyreg8.c +++ b/arch/ceva/src/common/ceva_modifyreg8.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/common/ceva_modifyreg8.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/ceva/src/common/ceva_nputs.c b/arch/ceva/src/common/ceva_nputs.c index 9bb65b20d4c..90e4068439a 100644 --- a/arch/ceva/src/common/ceva_nputs.c +++ b/arch/ceva/src/common/ceva_nputs.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/common/ceva_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/ceva/src/common/ceva_pthread_start.c b/arch/ceva/src/common/ceva_pthread_start.c index 469a7d1ac1d..d8c88770b79 100644 --- a/arch/ceva/src/common/ceva_pthread_start.c +++ b/arch/ceva/src/common/ceva_pthread_start.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/common/ceva_pthread_start.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/ceva/src/common/ceva_registerdump.c b/arch/ceva/src/common/ceva_registerdump.c index 2bd3b3059fb..3d0b7b14594 100644 --- a/arch/ceva/src/common/ceva_registerdump.c +++ b/arch/ceva/src/common/ceva_registerdump.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/common/ceva_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/ceva/src/common/ceva_releasestack.c b/arch/ceva/src/common/ceva_releasestack.c index 78c32d2d7d5..ac699aea8e1 100644 --- a/arch/ceva/src/common/ceva_releasestack.c +++ b/arch/ceva/src/common/ceva_releasestack.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/common/ceva_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/ceva/src/common/ceva_saveusercontext.c b/arch/ceva/src/common/ceva_saveusercontext.c index 090587295d9..a362672140e 100644 --- a/arch/ceva/src/common/ceva_saveusercontext.c +++ b/arch/ceva/src/common/ceva_saveusercontext.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/common/ceva_saveusercontext.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/ceva/src/common/ceva_schedulesigaction.c b/arch/ceva/src/common/ceva_schedulesigaction.c index c96a7411412..5a2f62025c4 100644 --- a/arch/ceva/src/common/ceva_schedulesigaction.c +++ b/arch/ceva/src/common/ceva_schedulesigaction.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/common/ceva_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/ceva/src/common/ceva_sigdeliver.c b/arch/ceva/src/common/ceva_sigdeliver.c index 630bc639866..9a61377425a 100644 --- a/arch/ceva/src/common/ceva_sigdeliver.c +++ b/arch/ceva/src/common/ceva_sigdeliver.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/common/ceva_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/ceva/src/common/ceva_signal_dispatch.c b/arch/ceva/src/common/ceva_signal_dispatch.c index d532fa2b70e..a985d2825ac 100644 --- a/arch/ceva/src/common/ceva_signal_dispatch.c +++ b/arch/ceva/src/common/ceva_signal_dispatch.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/common/ceva_signal_dispatch.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/ceva/src/common/ceva_stackframe.c b/arch/ceva/src/common/ceva_stackframe.c index 9324e7eefc8..8caffb5bc1b 100644 --- a/arch/ceva/src/common/ceva_stackframe.c +++ b/arch/ceva/src/common/ceva_stackframe.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/common/ceva_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/ceva/src/common/ceva_start.c b/arch/ceva/src/common/ceva_start.c index 146cc421a37..ffc8833e449 100644 --- a/arch/ceva/src/common/ceva_start.c +++ b/arch/ceva/src/common/ceva_start.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/common/ceva_start.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/ceva/src/common/ceva_svcall.c b/arch/ceva/src/common/ceva_svcall.c index 050e36797c7..bc231a49d9e 100644 --- a/arch/ceva/src/common/ceva_svcall.c +++ b/arch/ceva/src/common/ceva_svcall.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/common/ceva_svcall.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/ceva/src/common/ceva_switchcontext.c b/arch/ceva/src/common/ceva_switchcontext.c index 3f5311064f7..a1d86136249 100644 --- a/arch/ceva/src/common/ceva_switchcontext.c +++ b/arch/ceva/src/common/ceva_switchcontext.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/common/ceva_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/ceva/src/common/ceva_task_start.c b/arch/ceva/src/common/ceva_task_start.c index d095ea18bc6..abf5317fdf7 100644 --- a/arch/ceva/src/common/ceva_task_start.c +++ b/arch/ceva/src/common/ceva_task_start.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/common/ceva_task_start.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/ceva/src/common/ceva_userspace.c b/arch/ceva/src/common/ceva_userspace.c index 236491b6ff6..98e33d44ffe 100644 --- a/arch/ceva/src/common/ceva_userspace.c +++ b/arch/ceva/src/common/ceva_userspace.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/common/ceva_userspace.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/ceva/src/common/ceva_usestack.c b/arch/ceva/src/common/ceva_usestack.c index 5b043e099fa..8da2285f722 100644 --- a/arch/ceva/src/common/ceva_usestack.c +++ b/arch/ceva/src/common/ceva_usestack.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/common/ceva_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/ceva/src/common/mpu.h b/arch/ceva/src/common/mpu.h index 9f54c3e21b1..c30f5f9c711 100644 --- a/arch/ceva/src/common/mpu.h +++ b/arch/ceva/src/common/mpu.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/common/mpu.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/ceva/src/common/vintc.h b/arch/ceva/src/common/vintc.h index 611902e548f..93201ef749d 100644 --- a/arch/ceva/src/common/vintc.h +++ b/arch/ceva/src/common/vintc.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/common/vintc.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/ceva/src/xc5/Toolchain.defs b/arch/ceva/src/xc5/Toolchain.defs index e299f400e87..8cbf082fe34 100644 --- a/arch/ceva/src/xc5/Toolchain.defs +++ b/arch/ceva/src/xc5/Toolchain.defs @@ -1,6 +1,8 @@ ############################################################################ # arch/ceva/src/xc5/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/ceva/src/xc5/cpm.S b/arch/ceva/src/xc5/cpm.S index e8618235408..988b93e3987 100644 --- a/arch/ceva/src/xc5/cpm.S +++ b/arch/ceva/src/xc5/cpm.S @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/xc5/cpm.S * + * 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/ceva/src/xc5/cpm.h b/arch/ceva/src/xc5/cpm.h index 8e322573ea9..e2502b9ac3e 100644 --- a/arch/ceva/src/xc5/cpm.h +++ b/arch/ceva/src/xc5/cpm.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/xc5/cpm.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/ceva/src/xc5/fork.S b/arch/ceva/src/xc5/fork.S index a8aecc43dfe..ba71c2b4d5b 100644 --- a/arch/ceva/src/xc5/fork.S +++ b/arch/ceva/src/xc5/fork.S @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/xc5/fork.S * + * 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/ceva/src/xc5/psu.h b/arch/ceva/src/xc5/psu.h index 4110b34ea80..f2d2e28fd0d 100644 --- a/arch/ceva/src/xc5/psu.h +++ b/arch/ceva/src/xc5/psu.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/xc5/psu.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/ceva/src/xc5/syscall.S b/arch/ceva/src/xc5/syscall.S index 38f89d021ec..660c7fbc1fa 100644 --- a/arch/ceva/src/xc5/syscall.S +++ b/arch/ceva/src/xc5/syscall.S @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/xc5/syscall.S * + * 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/ceva/src/xc5/xc5_hardfault.c b/arch/ceva/src/xc5/xc5_hardfault.c index 610ef02493c..c7645772fa8 100644 --- a/arch/ceva/src/xc5/xc5_hardfault.c +++ b/arch/ceva/src/xc5/xc5_hardfault.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/xc5/xc5_hardfault.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/ceva/src/xc5/xc5_head.S b/arch/ceva/src/xc5/xc5_head.S index dbcd9ba2222..932691d7019 100644 --- a/arch/ceva/src/xc5/xc5_head.S +++ b/arch/ceva/src/xc5/xc5_head.S @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/xc5/xc5_head.S * + * 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/ceva/src/xc5/xc5_icache.c b/arch/ceva/src/xc5/xc5_icache.c index dda1f3366a9..865d1b6e069 100644 --- a/arch/ceva/src/xc5/xc5_icache.c +++ b/arch/ceva/src/xc5/xc5_icache.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/xc5/xc5_icache.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/ceva/src/xc5/xc5_initialstate.c b/arch/ceva/src/xc5/xc5_initialstate.c index e7e48cadf0b..b6ae5dbabb1 100644 --- a/arch/ceva/src/xc5/xc5_initialstate.c +++ b/arch/ceva/src/xc5/xc5_initialstate.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/xc5/xc5_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/ceva/src/xc5/xc5_intc.c b/arch/ceva/src/xc5/xc5_intc.c index b4f73766716..b6ff2e4ad43 100644 --- a/arch/ceva/src/xc5/xc5_intc.c +++ b/arch/ceva/src/xc5/xc5_intc.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/xc5/xc5_intc.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/ceva/src/xc5/xc5_mpu.c b/arch/ceva/src/xc5/xc5_mpu.c index 23720c86eb6..cddf84744a4 100644 --- a/arch/ceva/src/xc5/xc5_mpu.c +++ b/arch/ceva/src/xc5/xc5_mpu.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/xc5/xc5_mpu.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/ceva/src/xc5/xc5_psu.c b/arch/ceva/src/xc5/xc5_psu.c index 2398a246cad..cde23223412 100644 --- a/arch/ceva/src/xc5/xc5_psu.c +++ b/arch/ceva/src/xc5/xc5_psu.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/xc5/xc5_psu.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/ceva/src/xc5/xc5_relocate.c b/arch/ceva/src/xc5/xc5_relocate.c index 4937e7b2fc4..3bd4d2a2bf4 100644 --- a/arch/ceva/src/xc5/xc5_relocate.c +++ b/arch/ceva/src/xc5/xc5_relocate.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/xc5/xc5_relocate.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/ceva/src/xc5/xc5_signal_handler.S b/arch/ceva/src/xc5/xc5_signal_handler.S index 5628b3f3cbb..b0fceb3a2ee 100644 --- a/arch/ceva/src/xc5/xc5_signal_handler.S +++ b/arch/ceva/src/xc5/xc5_signal_handler.S @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/xc5/xc5_signal_handler.S * + * 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/ceva/src/xc5/xc5_svcall_handler.S b/arch/ceva/src/xc5/xc5_svcall_handler.S index fe227076e2c..54d092043e2 100644 --- a/arch/ceva/src/xc5/xc5_svcall_handler.S +++ b/arch/ceva/src/xc5/xc5_svcall_handler.S @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/xc5/xc5_svcall_handler.S * + * 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/ceva/src/xm6/Toolchain.defs b/arch/ceva/src/xm6/Toolchain.defs index b43708da128..db2a6a17692 100644 --- a/arch/ceva/src/xm6/Toolchain.defs +++ b/arch/ceva/src/xm6/Toolchain.defs @@ -1,6 +1,8 @@ ############################################################################ # arch/ceva/src/xm6/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/ceva/src/xm6/cpm.h b/arch/ceva/src/xm6/cpm.h index 167476810fb..2cca331f2e0 100644 --- a/arch/ceva/src/xm6/cpm.h +++ b/arch/ceva/src/xm6/cpm.h @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/xm6/cpm.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/ceva/src/xm6/fork.S b/arch/ceva/src/xm6/fork.S index f6d5a54c33b..d5b16fb7143 100644 --- a/arch/ceva/src/xm6/fork.S +++ b/arch/ceva/src/xm6/fork.S @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/xm6/fork.S * + * 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/ceva/src/xm6/syscall.S b/arch/ceva/src/xm6/syscall.S index 0026a7a8801..bcd806239fe 100644 --- a/arch/ceva/src/xm6/syscall.S +++ b/arch/ceva/src/xm6/syscall.S @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/xm6/syscall.S * + * 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/ceva/src/xm6/xm6_hardfault.c b/arch/ceva/src/xm6/xm6_hardfault.c index fd059f15ffc..935d5936af1 100644 --- a/arch/ceva/src/xm6/xm6_hardfault.c +++ b/arch/ceva/src/xm6/xm6_hardfault.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/xm6/xm6_hardfault.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/ceva/src/xm6/xm6_head.S b/arch/ceva/src/xm6/xm6_head.S index c6383332769..2e213eed44c 100644 --- a/arch/ceva/src/xm6/xm6_head.S +++ b/arch/ceva/src/xm6/xm6_head.S @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/xm6/xm6_head.S * + * 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/ceva/src/xm6/xm6_icache.c b/arch/ceva/src/xm6/xm6_icache.c index 308e2d787fa..79b290cb530 100644 --- a/arch/ceva/src/xm6/xm6_icache.c +++ b/arch/ceva/src/xm6/xm6_icache.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/xm6/xm6_icache.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/ceva/src/xm6/xm6_initialstate.c b/arch/ceva/src/xm6/xm6_initialstate.c index a476997a1ee..37df0647b03 100644 --- a/arch/ceva/src/xm6/xm6_initialstate.c +++ b/arch/ceva/src/xm6/xm6_initialstate.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/xm6/xm6_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/ceva/src/xm6/xm6_intc.c b/arch/ceva/src/xm6/xm6_intc.c index f906adf0659..1e5dc25860a 100644 --- a/arch/ceva/src/xm6/xm6_intc.c +++ b/arch/ceva/src/xm6/xm6_intc.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/xm6/xm6_intc.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/ceva/src/xm6/xm6_mpu.c b/arch/ceva/src/xm6/xm6_mpu.c index c80fc099b2c..096b7ab52e7 100644 --- a/arch/ceva/src/xm6/xm6_mpu.c +++ b/arch/ceva/src/xm6/xm6_mpu.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/xm6/xm6_mpu.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/ceva/src/xm6/xm6_psu.c b/arch/ceva/src/xm6/xm6_psu.c index 0c2d1f65ec3..7814e1852fc 100644 --- a/arch/ceva/src/xm6/xm6_psu.c +++ b/arch/ceva/src/xm6/xm6_psu.c @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/xm6/xm6_psu.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/ceva/src/xm6/xm6_signal_handler.S b/arch/ceva/src/xm6/xm6_signal_handler.S index a0f6c3bdecb..c47ff754807 100644 --- a/arch/ceva/src/xm6/xm6_signal_handler.S +++ b/arch/ceva/src/xm6/xm6_signal_handler.S @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/xm6/xm6_signal_handler.S * + * 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/ceva/src/xm6/xm6_svcall_handler.S b/arch/ceva/src/xm6/xm6_svcall_handler.S index 0709ae8a83e..456d8c49cd9 100644 --- a/arch/ceva/src/xm6/xm6_svcall_handler.S +++ b/arch/ceva/src/xm6/xm6_svcall_handler.S @@ -1,6 +1,8 @@ /**************************************************************************** * arch/ceva/src/xm6/xm6_svcall_handler.S * + * 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