This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git

commit d2b24c8e3a5d8f1ad4ce0185583763443a9b95e2
Author: Alin Jerpelea <[email protected]>
AuthorDate: Mon Dec 2 10:43:31 2024 +0100

    arch/hc: 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 <[email protected]>
---
 arch/hc/include/arch.h                    | 2 ++
 arch/hc/include/hc12/irq.h                | 2 ++
 arch/hc/include/hc12/limits.h             | 2 ++
 arch/hc/include/hc12/types.h              | 2 ++
 arch/hc/include/hcs12/irq.h               | 2 ++
 arch/hc/include/hcs12/limits.h            | 2 ++
 arch/hc/include/hcs12/types.h             | 2 ++
 arch/hc/include/inttypes.h                | 2 ++
 arch/hc/include/irq.h                     | 2 ++
 arch/hc/include/limits.h                  | 2 ++
 arch/hc/include/m9s12/irq.h               | 2 ++
 arch/hc/include/syscall.h                 | 2 ++
 arch/hc/include/types.h                   | 2 ++
 arch/hc/src/Makefile                      | 2 ++
 arch/hc/src/common/hc_allocateheap.c      | 2 ++
 arch/hc/src/common/hc_copystate.c         | 2 ++
 arch/hc/src/common/hc_createstack.c       | 2 ++
 arch/hc/src/common/hc_doirq.c             | 2 ++
 arch/hc/src/common/hc_exit.c              | 2 ++
 arch/hc/src/common/hc_getintstack.c       | 2 ++
 arch/hc/src/common/hc_idle.c              | 2 ++
 arch/hc/src/common/hc_initialize.c        | 2 ++
 arch/hc/src/common/hc_internal.h          | 2 ++
 arch/hc/src/common/hc_mdelay.c            | 2 ++
 arch/hc/src/common/hc_modifyreg16.c       | 2 ++
 arch/hc/src/common/hc_modifyreg32.c       | 2 ++
 arch/hc/src/common/hc_modifyreg8.c        | 2 ++
 arch/hc/src/common/hc_nputs.c             | 2 ++
 arch/hc/src/common/hc_releasestack.c      | 2 ++
 arch/hc/src/common/hc_stackframe.c        | 2 ++
 arch/hc/src/common/hc_switchcontext.c     | 2 ++
 arch/hc/src/common/hc_udelay.c            | 2 ++
 arch/hc/src/common/hc_usestack.c          | 2 ++
 arch/hc/src/m9s12/Make.defs               | 2 ++
 arch/hc/src/m9s12/chip.h                  | 2 ++
 arch/hc/src/m9s12/m9s12.h                 | 2 ++
 arch/hc/src/m9s12/m9s12_atd.h             | 2 ++
 arch/hc/src/m9s12/m9s12_crg.h             | 2 ++
 arch/hc/src/m9s12/m9s12_dumpgpio.c        | 2 ++
 arch/hc/src/m9s12/m9s12_emac.h            | 2 ++
 arch/hc/src/m9s12/m9s12_ethernet.c        | 2 ++
 arch/hc/src/m9s12/m9s12_flash.h           | 2 ++
 arch/hc/src/m9s12/m9s12_gpio.c            | 2 ++
 arch/hc/src/m9s12/m9s12_gpioirq.c         | 2 ++
 arch/hc/src/m9s12/m9s12_iic.h             | 2 ++
 arch/hc/src/m9s12/m9s12_initialstate.c    | 2 ++
 arch/hc/src/m9s12/m9s12_int.h             | 2 ++
 arch/hc/src/m9s12/m9s12_irq.c             | 2 ++
 arch/hc/src/m9s12/m9s12_lowputc.S         | 2 ++
 arch/hc/src/m9s12/m9s12_mebi.h            | 2 ++
 arch/hc/src/m9s12/m9s12_mmc.h             | 2 ++
 arch/hc/src/m9s12/m9s12_phy.h             | 2 ++
 arch/hc/src/m9s12/m9s12_pim.h             | 2 ++
 arch/hc/src/m9s12/m9s12_registerdump.c    | 2 ++
 arch/hc/src/m9s12/m9s12_saveusercontext.S | 2 ++
 arch/hc/src/m9s12/m9s12_sci.h             | 2 ++
 arch/hc/src/m9s12/m9s12_serial.c          | 2 ++
 arch/hc/src/m9s12/m9s12_serial.h          | 2 ++
 arch/hc/src/m9s12/m9s12_spi.h             | 2 ++
 arch/hc/src/m9s12/m9s12_start.S           | 2 ++
 arch/hc/src/m9s12/m9s12_tim.h             | 2 ++
 arch/hc/src/m9s12/m9s12_timerisr.c        | 2 ++
 arch/hc/src/m9s12/m9s12_vectors.S         | 2 ++
 63 files changed, 126 insertions(+)

diff --git a/arch/hc/include/arch.h b/arch/hc/include/arch.h
index 9c9570585c..a020c9727b 100644
--- a/arch/hc/include/arch.h
+++ b/arch/hc/include/arch.h
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/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/hc/include/hc12/irq.h b/arch/hc/include/hc12/irq.h
index c6030d6d56..a67b3f53cc 100644
--- a/arch/hc/include/hc12/irq.h
+++ b/arch/hc/include/hc12/irq.h
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/include/hc12/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/hc/include/hc12/limits.h b/arch/hc/include/hc12/limits.h
index 7acd8fa607..729df3be5f 100644
--- a/arch/hc/include/hc12/limits.h
+++ b/arch/hc/include/hc12/limits.h
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/include/hc12/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/hc/include/hc12/types.h b/arch/hc/include/hc12/types.h
index 62b5c0beb7..279e5a5f82 100644
--- a/arch/hc/include/hc12/types.h
+++ b/arch/hc/include/hc12/types.h
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/include/hc12/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/hc/include/hcs12/irq.h b/arch/hc/include/hcs12/irq.h
index bf74aae9d2..fe218fe5eb 100644
--- a/arch/hc/include/hcs12/irq.h
+++ b/arch/hc/include/hcs12/irq.h
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/include/hcs12/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/hc/include/hcs12/limits.h b/arch/hc/include/hcs12/limits.h
index 9436e1e368..18f8e2ee76 100644
--- a/arch/hc/include/hcs12/limits.h
+++ b/arch/hc/include/hcs12/limits.h
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/include/hcs12/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/hc/include/hcs12/types.h b/arch/hc/include/hcs12/types.h
index 9dbf3d93f0..a3bc55fc7b 100644
--- a/arch/hc/include/hcs12/types.h
+++ b/arch/hc/include/hcs12/types.h
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/include/hcs12/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/hc/include/inttypes.h b/arch/hc/include/inttypes.h
index 512a0e2bcc..03480a37da 100644
--- a/arch/hc/include/inttypes.h
+++ b/arch/hc/include/inttypes.h
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/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/hc/include/irq.h b/arch/hc/include/irq.h
index b6698c02af..6e6ccafcb1 100644
--- a/arch/hc/include/irq.h
+++ b/arch/hc/include/irq.h
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/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/hc/include/limits.h b/arch/hc/include/limits.h
index 9fbd220d31..4aaf9ef40f 100644
--- a/arch/hc/include/limits.h
+++ b/arch/hc/include/limits.h
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/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/hc/include/m9s12/irq.h b/arch/hc/include/m9s12/irq.h
index 89334fd9fe..49340a21d7 100644
--- a/arch/hc/include/m9s12/irq.h
+++ b/arch/hc/include/m9s12/irq.h
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/include/m9s12/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/hc/include/syscall.h b/arch/hc/include/syscall.h
index bff3f419ac..2ac8c05365 100644
--- a/arch/hc/include/syscall.h
+++ b/arch/hc/include/syscall.h
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/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/hc/include/types.h b/arch/hc/include/types.h
index 23a02d19ce..a803146902 100644
--- a/arch/hc/include/types.h
+++ b/arch/hc/include/types.h
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/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/hc/src/Makefile b/arch/hc/src/Makefile
index 907b7bd65a..8754cc9df2 100644
--- a/arch/hc/src/Makefile
+++ b/arch/hc/src/Makefile
@@ -1,6 +1,8 @@
 ############################################################################
 # arch/hc/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/hc/src/common/hc_allocateheap.c 
b/arch/hc/src/common/hc_allocateheap.c
index d0a654245d..da3f8e57a3 100644
--- a/arch/hc/src/common/hc_allocateheap.c
+++ b/arch/hc/src/common/hc_allocateheap.c
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/common/hc_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/hc/src/common/hc_copystate.c 
b/arch/hc/src/common/hc_copystate.c
index d7e62d2c71..797b351656 100644
--- a/arch/hc/src/common/hc_copystate.c
+++ b/arch/hc/src/common/hc_copystate.c
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/common/hc_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/hc/src/common/hc_createstack.c 
b/arch/hc/src/common/hc_createstack.c
index 4bc5063860..641b475514 100644
--- a/arch/hc/src/common/hc_createstack.c
+++ b/arch/hc/src/common/hc_createstack.c
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/common/hc_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/hc/src/common/hc_doirq.c b/arch/hc/src/common/hc_doirq.c
index 2142687a45..82232bf639 100644
--- a/arch/hc/src/common/hc_doirq.c
+++ b/arch/hc/src/common/hc_doirq.c
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/common/hc_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/hc/src/common/hc_exit.c b/arch/hc/src/common/hc_exit.c
index 146da1c88e..fd413d4fb9 100644
--- a/arch/hc/src/common/hc_exit.c
+++ b/arch/hc/src/common/hc_exit.c
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/common/hc_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/hc/src/common/hc_getintstack.c 
b/arch/hc/src/common/hc_getintstack.c
index 1264c32ad1..9831201e75 100644
--- a/arch/hc/src/common/hc_getintstack.c
+++ b/arch/hc/src/common/hc_getintstack.c
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/common/hc_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/hc/src/common/hc_idle.c b/arch/hc/src/common/hc_idle.c
index e2e95b6c75..740f39150e 100644
--- a/arch/hc/src/common/hc_idle.c
+++ b/arch/hc/src/common/hc_idle.c
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/common/hc_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/hc/src/common/hc_initialize.c 
b/arch/hc/src/common/hc_initialize.c
index 03315334f7..45aee3e7ed 100644
--- a/arch/hc/src/common/hc_initialize.c
+++ b/arch/hc/src/common/hc_initialize.c
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/common/hc_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/hc/src/common/hc_internal.h b/arch/hc/src/common/hc_internal.h
index ea10381ec3..42897b562b 100644
--- a/arch/hc/src/common/hc_internal.h
+++ b/arch/hc/src/common/hc_internal.h
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/common/hc_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/hc/src/common/hc_mdelay.c b/arch/hc/src/common/hc_mdelay.c
index 9b262f2eca..8af76550f5 100644
--- a/arch/hc/src/common/hc_mdelay.c
+++ b/arch/hc/src/common/hc_mdelay.c
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/common/hc_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/hc/src/common/hc_modifyreg16.c 
b/arch/hc/src/common/hc_modifyreg16.c
index 3a9f4eb60a..663409165d 100644
--- a/arch/hc/src/common/hc_modifyreg16.c
+++ b/arch/hc/src/common/hc_modifyreg16.c
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/common/hc_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/hc/src/common/hc_modifyreg32.c 
b/arch/hc/src/common/hc_modifyreg32.c
index fc61a38b2c..b10296f720 100644
--- a/arch/hc/src/common/hc_modifyreg32.c
+++ b/arch/hc/src/common/hc_modifyreg32.c
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/common/hc_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/hc/src/common/hc_modifyreg8.c 
b/arch/hc/src/common/hc_modifyreg8.c
index 9f19f71afc..05e08e9f1e 100644
--- a/arch/hc/src/common/hc_modifyreg8.c
+++ b/arch/hc/src/common/hc_modifyreg8.c
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/common/hc_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/hc/src/common/hc_nputs.c b/arch/hc/src/common/hc_nputs.c
index a776b70081..bd581764ae 100644
--- a/arch/hc/src/common/hc_nputs.c
+++ b/arch/hc/src/common/hc_nputs.c
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/common/hc_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/hc/src/common/hc_releasestack.c 
b/arch/hc/src/common/hc_releasestack.c
index 6865a94ac9..dc77e261a9 100644
--- a/arch/hc/src/common/hc_releasestack.c
+++ b/arch/hc/src/common/hc_releasestack.c
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/common/hc_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/hc/src/common/hc_stackframe.c 
b/arch/hc/src/common/hc_stackframe.c
index edfc438f0e..569c2b9952 100644
--- a/arch/hc/src/common/hc_stackframe.c
+++ b/arch/hc/src/common/hc_stackframe.c
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/common/hc_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/hc/src/common/hc_switchcontext.c 
b/arch/hc/src/common/hc_switchcontext.c
index f75ee8576b..182b39998f 100644
--- a/arch/hc/src/common/hc_switchcontext.c
+++ b/arch/hc/src/common/hc_switchcontext.c
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/common/hc_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/hc/src/common/hc_udelay.c b/arch/hc/src/common/hc_udelay.c
index 4b6348f157..5ecd3b7919 100644
--- a/arch/hc/src/common/hc_udelay.c
+++ b/arch/hc/src/common/hc_udelay.c
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/common/hc_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/hc/src/common/hc_usestack.c b/arch/hc/src/common/hc_usestack.c
index 494734bb10..71e64b3620 100644
--- a/arch/hc/src/common/hc_usestack.c
+++ b/arch/hc/src/common/hc_usestack.c
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/common/hc_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/hc/src/m9s12/Make.defs b/arch/hc/src/m9s12/Make.defs
index be6f1e1919..2486eacb07 100644
--- a/arch/hc/src/m9s12/Make.defs
+++ b/arch/hc/src/m9s12/Make.defs
@@ -1,6 +1,8 @@
 ############################################################################
 # arch/hc/src/m9s12/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/hc/src/m9s12/chip.h b/arch/hc/src/m9s12/chip.h
index a6710e8b54..117b2ae2f6 100644
--- a/arch/hc/src/m9s12/chip.h
+++ b/arch/hc/src/m9s12/chip.h
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/m9s12/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/hc/src/m9s12/m9s12.h b/arch/hc/src/m9s12/m9s12.h
index edf9b45357..df93a5d7ae 100644
--- a/arch/hc/src/m9s12/m9s12.h
+++ b/arch/hc/src/m9s12/m9s12.h
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/m9s12/m9s12.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/hc/src/m9s12/m9s12_atd.h b/arch/hc/src/m9s12/m9s12_atd.h
index 116aef3781..cf6059708f 100644
--- a/arch/hc/src/m9s12/m9s12_atd.h
+++ b/arch/hc/src/m9s12/m9s12_atd.h
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/m9s12/m9s12_atd.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/hc/src/m9s12/m9s12_crg.h b/arch/hc/src/m9s12/m9s12_crg.h
index e2314985d3..f8e42a9de0 100644
--- a/arch/hc/src/m9s12/m9s12_crg.h
+++ b/arch/hc/src/m9s12/m9s12_crg.h
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/m9s12/m9s12_crg.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/hc/src/m9s12/m9s12_dumpgpio.c 
b/arch/hc/src/m9s12/m9s12_dumpgpio.c
index 90b8e3a092..e0cf38f7d1 100644
--- a/arch/hc/src/m9s12/m9s12_dumpgpio.c
+++ b/arch/hc/src/m9s12/m9s12_dumpgpio.c
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/m9s12/m9s12_dumpgpio.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/hc/src/m9s12/m9s12_emac.h b/arch/hc/src/m9s12/m9s12_emac.h
index ed252ee537..1fcdfe4382 100644
--- a/arch/hc/src/m9s12/m9s12_emac.h
+++ b/arch/hc/src/m9s12/m9s12_emac.h
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/m9s12/m9s12_emac.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/hc/src/m9s12/m9s12_ethernet.c 
b/arch/hc/src/m9s12/m9s12_ethernet.c
index 270c91bdc2..3c6a43bddb 100644
--- a/arch/hc/src/m9s12/m9s12_ethernet.c
+++ b/arch/hc/src/m9s12/m9s12_ethernet.c
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/m9s12/m9s12_ethernet.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/hc/src/m9s12/m9s12_flash.h b/arch/hc/src/m9s12/m9s12_flash.h
index d8788103a5..4943b72b56 100644
--- a/arch/hc/src/m9s12/m9s12_flash.h
+++ b/arch/hc/src/m9s12/m9s12_flash.h
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/m9s12/m9s12_flash.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/hc/src/m9s12/m9s12_gpio.c b/arch/hc/src/m9s12/m9s12_gpio.c
index 8108217b6d..bea9177010 100644
--- a/arch/hc/src/m9s12/m9s12_gpio.c
+++ b/arch/hc/src/m9s12/m9s12_gpio.c
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/m9s12/m9s12_gpio.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/hc/src/m9s12/m9s12_gpioirq.c 
b/arch/hc/src/m9s12/m9s12_gpioirq.c
index e10a3c7704..63b30c8ea6 100644
--- a/arch/hc/src/m9s12/m9s12_gpioirq.c
+++ b/arch/hc/src/m9s12/m9s12_gpioirq.c
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/m9s12/m9s12_gpioirq.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/hc/src/m9s12/m9s12_iic.h b/arch/hc/src/m9s12/m9s12_iic.h
index 08394f9844..0e5438b535 100644
--- a/arch/hc/src/m9s12/m9s12_iic.h
+++ b/arch/hc/src/m9s12/m9s12_iic.h
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/m9s12/m9s12_iic.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/hc/src/m9s12/m9s12_initialstate.c 
b/arch/hc/src/m9s12/m9s12_initialstate.c
index 2a33a0c53a..7cf76c88e7 100644
--- a/arch/hc/src/m9s12/m9s12_initialstate.c
+++ b/arch/hc/src/m9s12/m9s12_initialstate.c
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/m9s12/m9s12_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/hc/src/m9s12/m9s12_int.h b/arch/hc/src/m9s12/m9s12_int.h
index 96da8de127..d43015b920 100644
--- a/arch/hc/src/m9s12/m9s12_int.h
+++ b/arch/hc/src/m9s12/m9s12_int.h
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/m9s12/m9s12_int.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/hc/src/m9s12/m9s12_irq.c b/arch/hc/src/m9s12/m9s12_irq.c
index 9136dfaee2..7b92c9a150 100644
--- a/arch/hc/src/m9s12/m9s12_irq.c
+++ b/arch/hc/src/m9s12/m9s12_irq.c
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/m9s12/m9s12_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/hc/src/m9s12/m9s12_lowputc.S 
b/arch/hc/src/m9s12/m9s12_lowputc.S
index f44c92c07f..25bea915e9 100644
--- a/arch/hc/src/m9s12/m9s12_lowputc.S
+++ b/arch/hc/src/m9s12/m9s12_lowputc.S
@@ -1,6 +1,8 @@
 /**************************************************************************
  * arch/hc/src/m9s12/m9s12_lowputc.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/hc/src/m9s12/m9s12_mebi.h b/arch/hc/src/m9s12/m9s12_mebi.h
index 4752ca0a01..57980912de 100644
--- a/arch/hc/src/m9s12/m9s12_mebi.h
+++ b/arch/hc/src/m9s12/m9s12_mebi.h
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/m9s12/m9s12_mebi.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/hc/src/m9s12/m9s12_mmc.h b/arch/hc/src/m9s12/m9s12_mmc.h
index 46eb78ffaf..5b285a8f7c 100644
--- a/arch/hc/src/m9s12/m9s12_mmc.h
+++ b/arch/hc/src/m9s12/m9s12_mmc.h
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/m9s12/m9s12_mmc.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/hc/src/m9s12/m9s12_phy.h b/arch/hc/src/m9s12/m9s12_phy.h
index 9f43b9290c..b2a6f2ba7f 100644
--- a/arch/hc/src/m9s12/m9s12_phy.h
+++ b/arch/hc/src/m9s12/m9s12_phy.h
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/m9s12/m9s12_phy.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/hc/src/m9s12/m9s12_pim.h b/arch/hc/src/m9s12/m9s12_pim.h
index 7fab31d2e0..a6750d35d0 100644
--- a/arch/hc/src/m9s12/m9s12_pim.h
+++ b/arch/hc/src/m9s12/m9s12_pim.h
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/m9s12/m9s12_pim.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/hc/src/m9s12/m9s12_registerdump.c 
b/arch/hc/src/m9s12/m9s12_registerdump.c
index 5bd278639b..dde8fed1c5 100644
--- a/arch/hc/src/m9s12/m9s12_registerdump.c
+++ b/arch/hc/src/m9s12/m9s12_registerdump.c
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/m9s12/m9s12_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/hc/src/m9s12/m9s12_saveusercontext.S 
b/arch/hc/src/m9s12/m9s12_saveusercontext.S
index 2fbe9f7673..6455d51d00 100644
--- a/arch/hc/src/m9s12/m9s12_saveusercontext.S
+++ b/arch/hc/src/m9s12/m9s12_saveusercontext.S
@@ -1,6 +1,8 @@
 /**************************************************************************
  * arch/hc/src/m9s12/m9s12_saveusercontext.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/hc/src/m9s12/m9s12_sci.h b/arch/hc/src/m9s12/m9s12_sci.h
index b1046f9674..1f300d83de 100644
--- a/arch/hc/src/m9s12/m9s12_sci.h
+++ b/arch/hc/src/m9s12/m9s12_sci.h
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/m9s12/m9s12_sci.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/hc/src/m9s12/m9s12_serial.c b/arch/hc/src/m9s12/m9s12_serial.c
index 67e3cf0829..bac472ef04 100644
--- a/arch/hc/src/m9s12/m9s12_serial.c
+++ b/arch/hc/src/m9s12/m9s12_serial.c
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/m9s12/m9s12_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/hc/src/m9s12/m9s12_serial.h b/arch/hc/src/m9s12/m9s12_serial.h
index 3642817c2f..483dc7dd8e 100644
--- a/arch/hc/src/m9s12/m9s12_serial.h
+++ b/arch/hc/src/m9s12/m9s12_serial.h
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/m9s12/m9s12_serial.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/hc/src/m9s12/m9s12_spi.h b/arch/hc/src/m9s12/m9s12_spi.h
index c123fa8e8e..15a89af5fa 100644
--- a/arch/hc/src/m9s12/m9s12_spi.h
+++ b/arch/hc/src/m9s12/m9s12_spi.h
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/m9s12/m9s12_spi.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/hc/src/m9s12/m9s12_start.S b/arch/hc/src/m9s12/m9s12_start.S
index 51dc1756cc..52c8450cb2 100644
--- a/arch/hc/src/m9s12/m9s12_start.S
+++ b/arch/hc/src/m9s12/m9s12_start.S
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/m9s12/m9s12_start.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/hc/src/m9s12/m9s12_tim.h b/arch/hc/src/m9s12/m9s12_tim.h
index b3aca32976..02eb46b5d1 100644
--- a/arch/hc/src/m9s12/m9s12_tim.h
+++ b/arch/hc/src/m9s12/m9s12_tim.h
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/m9s12/m9s12_tim.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/hc/src/m9s12/m9s12_timerisr.c 
b/arch/hc/src/m9s12/m9s12_timerisr.c
index 300c389262..f7d209816a 100644
--- a/arch/hc/src/m9s12/m9s12_timerisr.c
+++ b/arch/hc/src/m9s12/m9s12_timerisr.c
@@ -1,6 +1,8 @@
 /****************************************************************************
  * arch/hc/src/m9s12/m9s12_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
diff --git a/arch/hc/src/m9s12/m9s12_vectors.S 
b/arch/hc/src/m9s12/m9s12_vectors.S
index ba3c482174..68d38f2e80 100644
--- a/arch/hc/src/m9s12/m9s12_vectors.S
+++ b/arch/hc/src/m9s12/m9s12_vectors.S
@@ -1,6 +1,8 @@
 
/************************************************************************************
  * arch/hc/src/m9s12/m9s12_vectors.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


Reply via email to