From be6e30dff33c34220d10fcdf6d3ee9d8422e67d0 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Fri, 8 Aug 2025 16:19:06 -0500 Subject: [PATCH] bsps/arm: Move SPDX line to top of file The RTEMS Software Engineering Guide specifies that the SPDX license annotation shouldbe the first line of the file and not part of the copyright/license comment block. --- bsps/arm/atsam/start/power-wait.c | 4 ++-- bsps/arm/beagle/include/bsp/bbb-pwm.h | 4 ++-- bsps/arm/beagle/include/bsp/pwmss.h | 4 ++-- bsps/arm/beagle/include/bsp/qep.h | 4 ++-- bsps/arm/beagle/pwm/pwm.c | 4 ++-- bsps/arm/beagle/pwmss/pwmss.c | 4 ++-- bsps/arm/beagle/qep/qep.c | 4 ++-- bsps/arm/beagle/start/bspdebug.c | 4 ++-- bsps/arm/beagle/start/bspdebug.h | 4 ++-- bsps/arm/include/dev/cache/arm-data-cache-loop-set-way.h | 2 -- bsps/arm/lpc24xx/i2c/i2c.c | 4 ++-- bsps/arm/lpc24xx/include/bsp/i2c.h | 4 ++-- bsps/arm/lpc24xx/include/bsp/ssp.h | 4 ++-- bsps/arm/lpc24xx/spi/ssp.c | 4 ++-- bsps/arm/shared/cache/cache-v7ar-disable-data.S | 4 ++-- bsps/arm/shared/pins/imx-gpio.c | 4 ++-- bsps/arm/xen/console/console.c | 4 ++-- bsps/arm/xen/include/bsp.h | 4 ++-- bsps/arm/xen/include/bsp/irq.h | 4 ++-- bsps/arm/xen/include/tm27.h | 4 ++-- bsps/arm/xen/start/bspstart.c | 4 ++-- bsps/arm/xen/start/bspstarthooks.c | 4 ++-- bsps/arm/xen/start/bspstartmmu.c | 4 ++-- bsps/arm/xilinx-zynq/console/console-init.c | 4 ++-- bsps/arm/xilinx-zynq/include/bsp.h | 4 ++-- bsps/arm/xilinx-zynq/include/bsp/i2c.h | 4 ++-- bsps/arm/xilinx-zynq/include/bsp/irq.h | 4 ++-- bsps/arm/xilinx-zynq/include/tm27.h | 4 ++-- bsps/arm/xilinx-zynqmp-rpu/console/console-config.c | 4 ++-- bsps/arm/xilinx-zynqmp/console/console-config.c | 4 ++-- bsps/arm/xilinx-zynqmp/include/bsp.h | 4 ++-- bsps/arm/xilinx-zynqmp/include/bsp/irq.h | 4 ++-- bsps/arm/xilinx-zynqmp/start/bspreset.c | 4 ++-- bsps/arm/xilinx-zynqmp/start/bspsmp.c | 4 ++-- bsps/arm/xilinx-zynqmp/start/bspstart.c | 4 ++-- bsps/arm/xilinx-zynqmp/start/bspstarthooks.c | 4 ++-- bsps/arm/xilinx-zynqmp/start/bspstartmmu.c | 4 ++-- 37 files changed, 72 insertions(+), 74 deletions(-) diff --git a/bsps/arm/atsam/start/power-wait.c b/bsps/arm/atsam/start/power-wait.c index a3cb5935b1..6f391f57a9 100644 --- a/bsps/arm/atsam/start/power-wait.c +++ b/bsps/arm/atsam/start/power-wait.c @@ -1,6 +1,6 @@ +/* SPDX-License-Identifier: BSD-2-Clause */ + /* - * SPDX-License-Identifier: BSD-2-Clause - * * Copyright (C) 2019 embedded brains GmbH & Co. KG * * Redistribution and use in source and binary forms, with or without diff --git a/bsps/arm/beagle/include/bsp/bbb-pwm.h b/bsps/arm/beagle/include/bsp/bbb-pwm.h index 34f610f86d..1730b37294 100644 --- a/bsps/arm/beagle/include/bsp/bbb-pwm.h +++ b/bsps/arm/beagle/include/bsp/bbb-pwm.h @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: BSD-2-Clause */ + /** * @file * @@ -7,8 +9,6 @@ */ /* - * SPDX-License-Identifier: BSD-2-Clause - * * Copyright (c) 2016 Punit Vara * * Redistribution and use in source and binary forms, with or without diff --git a/bsps/arm/beagle/include/bsp/pwmss.h b/bsps/arm/beagle/include/bsp/pwmss.h index c1449ec600..0f7a131b3d 100644 --- a/bsps/arm/beagle/include/bsp/pwmss.h +++ b/bsps/arm/beagle/include/bsp/pwmss.h @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: BSD-2-Clause */ + /** * @file * @@ -7,8 +9,6 @@ */ /* - * SPDX-License-Identifier: BSD-2-Clause - * * Copyright (c) 2020, 2021 James Fitzsimons * * Redistribution and use in source and binary forms, with or without diff --git a/bsps/arm/beagle/include/bsp/qep.h b/bsps/arm/beagle/include/bsp/qep.h index 736224503e..907e885f16 100644 --- a/bsps/arm/beagle/include/bsp/qep.h +++ b/bsps/arm/beagle/include/bsp/qep.h @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: BSD-2-Clause */ + /** * @file * @@ -7,8 +9,6 @@ */ /* - * SPDX-License-Identifier: BSD-2-Clause - * * Copyright (c) 2020, 2021 James Fitzsimons * * Redistribution and use in source and binary forms, with or without diff --git a/bsps/arm/beagle/pwm/pwm.c b/bsps/arm/beagle/pwm/pwm.c index 6de66a7447..b9646fa8a4 100644 --- a/bsps/arm/beagle/pwm/pwm.c +++ b/bsps/arm/beagle/pwm/pwm.c @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: BSD-2-Clause */ + /** * @file * @@ -7,8 +9,6 @@ */ /* - * SPDX-License-Identifier: BSD-2-Clause - * * Copyright (c) 2016 Punit Vara * * Redistribution and use in source and binary forms, with or without diff --git a/bsps/arm/beagle/pwmss/pwmss.c b/bsps/arm/beagle/pwmss/pwmss.c index f3aaf8fc3f..065ef1e5e3 100644 --- a/bsps/arm/beagle/pwmss/pwmss.c +++ b/bsps/arm/beagle/pwmss/pwmss.c @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: BSD-2-Clause */ + /** * @file * @@ -7,8 +9,6 @@ */ /* - * SPDX-License-Identifier: BSD-2-Clause - * * Copyright (c) 2020, 2021 James Fitzsimons * * Redistribution and use in source and binary forms, with or without diff --git a/bsps/arm/beagle/qep/qep.c b/bsps/arm/beagle/qep/qep.c index fbbf3ec4d1..00e5147fd6 100644 --- a/bsps/arm/beagle/qep/qep.c +++ b/bsps/arm/beagle/qep/qep.c @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: BSD-2-Clause */ + /** * @file * @@ -7,8 +9,6 @@ */ /* - * SPDX-License-Identifier: BSD-2-Clause - * * Copyright (c) 2020, 2021 James Fitzsimons * * Redistribution and use in source and binary forms, with or without diff --git a/bsps/arm/beagle/start/bspdebug.c b/bsps/arm/beagle/start/bspdebug.c index d57fe97d49..74d349e30d 100644 --- a/bsps/arm/beagle/start/bspdebug.c +++ b/bsps/arm/beagle/start/bspdebug.c @@ -1,6 +1,6 @@ +/* SPDX-License-Identifier: BSD-2-Clause */ + /* - * SPDX-License-Identifier: BSD-2-Clause - * * Copyright (C) 2019 Chris Johns . All rights reserved. * Copyright (C) 2015, Dutch & Dutch. All rights reserved. * diff --git a/bsps/arm/beagle/start/bspdebug.h b/bsps/arm/beagle/start/bspdebug.h index 7e423a0459..16c5ab99de 100644 --- a/bsps/arm/beagle/start/bspdebug.h +++ b/bsps/arm/beagle/start/bspdebug.h @@ -1,6 +1,6 @@ +/* SPDX-License-Identifier: BSD-2-Clause */ + /* - * SPDX-License-Identifier: BSD-2-Clause - * * Copyright (C) 2019 Chris Johns . All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/bsps/arm/include/dev/cache/arm-data-cache-loop-set-way.h b/bsps/arm/include/dev/cache/arm-data-cache-loop-set-way.h index 168b109aa8..a5854efece 100644 --- a/bsps/arm/include/dev/cache/arm-data-cache-loop-set-way.h +++ b/bsps/arm/include/dev/cache/arm-data-cache-loop-set-way.h @@ -10,8 +10,6 @@ */ /* - * SPDX-License-Identifier: BSD-2-Clause - * * Copyright (C) 2018 embedded brains GmbH & Co. KG * * Redistribution and use in source and binary forms, with or without diff --git a/bsps/arm/lpc24xx/i2c/i2c.c b/bsps/arm/lpc24xx/i2c/i2c.c index 1585cc3872..b7023adf35 100644 --- a/bsps/arm/lpc24xx/i2c/i2c.c +++ b/bsps/arm/lpc24xx/i2c/i2c.c @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: BSD-2-Clause */ + /** * @file * @@ -5,8 +7,6 @@ */ /* - * SPDX-License-Identifier: BSD-2-Clause - * * Copyright (C) 2009, 2019 embedded brains GmbH & Co. KG * * Redistribution and use in source and binary forms, with or without diff --git a/bsps/arm/lpc24xx/include/bsp/i2c.h b/bsps/arm/lpc24xx/include/bsp/i2c.h index a300ce9bd7..2d8b3f84eb 100644 --- a/bsps/arm/lpc24xx/include/bsp/i2c.h +++ b/bsps/arm/lpc24xx/include/bsp/i2c.h @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: BSD-2-Clause */ + /** * @file * @@ -5,8 +7,6 @@ */ /* - * SPDX-License-Identifier: BSD-2-Clause - * * Copyright (C) 2009, 2019 embedded brains GmbH & Co. KG * * Redistribution and use in source and binary forms, with or without diff --git a/bsps/arm/lpc24xx/include/bsp/ssp.h b/bsps/arm/lpc24xx/include/bsp/ssp.h index 9a2846f16f..3d3515c550 100644 --- a/bsps/arm/lpc24xx/include/bsp/ssp.h +++ b/bsps/arm/lpc24xx/include/bsp/ssp.h @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: BSD-2-Clause */ + /** * @file * @@ -5,8 +7,6 @@ */ /* - * SPDX-License-Identifier: BSD-2-Clause - * * Copyright (C) 2008, 2019 embedded brains GmbH & Co. KG * * Redistribution and use in source and binary forms, with or without diff --git a/bsps/arm/lpc24xx/spi/ssp.c b/bsps/arm/lpc24xx/spi/ssp.c index 9aa93dbae0..68aa43e314 100644 --- a/bsps/arm/lpc24xx/spi/ssp.c +++ b/bsps/arm/lpc24xx/spi/ssp.c @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: BSD-2-Clause */ + /** * @file * @@ -5,8 +7,6 @@ */ /* - * SPDX-License-Identifier: BSD-2-Clause - * * Copyright (C) 2008, 2019 embedded brains GmbH & Co. KG * * Redistribution and use in source and binary forms, with or without diff --git a/bsps/arm/shared/cache/cache-v7ar-disable-data.S b/bsps/arm/shared/cache/cache-v7ar-disable-data.S index 24baa8c4dc..14eaf38174 100644 --- a/bsps/arm/shared/cache/cache-v7ar-disable-data.S +++ b/bsps/arm/shared/cache/cache-v7ar-disable-data.S @@ -1,6 +1,6 @@ +/* SPDX-License-Identifier: BSD-2-Clause */ + /* - * SPDX-License-Identifier: BSD-2-Clause - * * Copyright (C) 2018 embedded brains GmbH & Co. KG * * Redistribution and use in source and binary forms, with or without diff --git a/bsps/arm/shared/pins/imx-gpio.c b/bsps/arm/shared/pins/imx-gpio.c index cb91868aa4..aec65edfa8 100644 --- a/bsps/arm/shared/pins/imx-gpio.c +++ b/bsps/arm/shared/pins/imx-gpio.c @@ -1,6 +1,6 @@ +/* SPDX-License-Identifier: BSD-2-Clause */ + /* - * SPDX-License-Identifier: BSD-2-Clause - * * Copyright (C) 2019, 2020 embedded brains GmbH & Co. KG * * Redistribution and use in source and binary forms, with or without diff --git a/bsps/arm/xen/console/console.c b/bsps/arm/xen/console/console.c index 20f187a7e9..387f40a458 100644 --- a/bsps/arm/xen/console/console.c +++ b/bsps/arm/xen/console/console.c @@ -1,6 +1,6 @@ +/* SPDX-License-Identifier: BSD-2-Clause */ + /* - * SPDX-License-Identifier: BSD-2-Clause - * * Copyright (C) 2019 DornerWorks * Written by Jeff Kubascik * diff --git a/bsps/arm/xen/include/bsp.h b/bsps/arm/xen/include/bsp.h index ae03d81c1e..01f7c485f2 100644 --- a/bsps/arm/xen/include/bsp.h +++ b/bsps/arm/xen/include/bsp.h @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: BSD-2-Clause */ + /** * @file * @@ -7,8 +9,6 @@ */ /* - * SPDX-License-Identifier: BSD-2-Clause - * * Copyright (C) 2019 DornerWorks * Written by Jeff Kubascik * diff --git a/bsps/arm/xen/include/bsp/irq.h b/bsps/arm/xen/include/bsp/irq.h index e64fde3037..a5392be0d4 100644 --- a/bsps/arm/xen/include/bsp/irq.h +++ b/bsps/arm/xen/include/bsp/irq.h @@ -1,6 +1,6 @@ +/* SPDX-License-Identifier: BSD-2-Clause */ + /* - * SPDX-License-Identifier: BSD-2-Clause - * * Copyright (C) 2019 DornerWorks * Written by Jeff Kubascik * diff --git a/bsps/arm/xen/include/tm27.h b/bsps/arm/xen/include/tm27.h index 4c1dfaa213..ca4acf90e5 100644 --- a/bsps/arm/xen/include/tm27.h +++ b/bsps/arm/xen/include/tm27.h @@ -1,6 +1,6 @@ +/* SPDX-License-Identifier: BSD-2-Clause */ + /* - * SPDX-License-Identifier: BSD-2-Clause - * * Copyright (C) 2019 DornerWorks * Written by Jeff Kubascik * diff --git a/bsps/arm/xen/start/bspstart.c b/bsps/arm/xen/start/bspstart.c index 783181345f..5ca6439a9b 100644 --- a/bsps/arm/xen/start/bspstart.c +++ b/bsps/arm/xen/start/bspstart.c @@ -1,6 +1,6 @@ +/* SPDX-License-Identifier: BSD-2-Clause */ + /* - * SPDX-License-Identifier: BSD-2-Clause - * * Copyright (C) 2019 DornerWorks * Written by Jeff Kubascik * diff --git a/bsps/arm/xen/start/bspstarthooks.c b/bsps/arm/xen/start/bspstarthooks.c index 6f0e4c3d0c..b7718ca81c 100644 --- a/bsps/arm/xen/start/bspstarthooks.c +++ b/bsps/arm/xen/start/bspstarthooks.c @@ -1,6 +1,6 @@ +/* SPDX-License-Identifier: BSD-2-Clause */ + /* - * SPDX-License-Identifier: BSD-2-Clause - * * Copyright (C) 2019 DornerWorks * Written by Jeff Kubascik * diff --git a/bsps/arm/xen/start/bspstartmmu.c b/bsps/arm/xen/start/bspstartmmu.c index b24af89d41..000ecfaa01 100644 --- a/bsps/arm/xen/start/bspstartmmu.c +++ b/bsps/arm/xen/start/bspstartmmu.c @@ -1,6 +1,6 @@ +/* SPDX-License-Identifier: BSD-2-Clause */ + /* - * SPDX-License-Identifier: BSD-2-Clause - * * Copyright (C) 2019 DornerWorks * Written by Jeff Kubascik * diff --git a/bsps/arm/xilinx-zynq/console/console-init.c b/bsps/arm/xilinx-zynq/console/console-init.c index 2018aaa710..c621f41111 100644 --- a/bsps/arm/xilinx-zynq/console/console-init.c +++ b/bsps/arm/xilinx-zynq/console/console-init.c @@ -1,6 +1,6 @@ +/* SPDX-License-Identifier: BSD-2-Clause */ + /* - * SPDX-License-Identifier: BSD-2-Clause - * * Copyright (C) 2013, 2017 embedded brains GmbH & Co. KG * * Redistribution and use in source and binary forms, with or without diff --git a/bsps/arm/xilinx-zynq/include/bsp.h b/bsps/arm/xilinx-zynq/include/bsp.h index 151e603812..7ba41fec10 100644 --- a/bsps/arm/xilinx-zynq/include/bsp.h +++ b/bsps/arm/xilinx-zynq/include/bsp.h @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: BSD-2-Clause */ + /** * @file * @ingroup RTEMSBSPsARMZynq @@ -5,8 +7,6 @@ */ /* - * SPDX-License-Identifier: BSD-2-Clause - * * Copyright (C) 2013, 2014 embedded brains GmbH & Co. KG * * Redistribution and use in source and binary forms, with or without diff --git a/bsps/arm/xilinx-zynq/include/bsp/i2c.h b/bsps/arm/xilinx-zynq/include/bsp/i2c.h index 93a8b364b1..6b55ab9aaf 100644 --- a/bsps/arm/xilinx-zynq/include/bsp/i2c.h +++ b/bsps/arm/xilinx-zynq/include/bsp/i2c.h @@ -1,6 +1,6 @@ +/* SPDX-License-Identifier: BSD-2-Clause */ + /* - * SPDX-License-Identifier: BSD-2-Clause - * * Copyright (C) 2014 embedded brains GmbH & Co. KG * * Redistribution and use in source and binary forms, with or without diff --git a/bsps/arm/xilinx-zynq/include/bsp/irq.h b/bsps/arm/xilinx-zynq/include/bsp/irq.h index 61d47c529b..bfbf0f57e9 100644 --- a/bsps/arm/xilinx-zynq/include/bsp/irq.h +++ b/bsps/arm/xilinx-zynq/include/bsp/irq.h @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: BSD-2-Clause */ + /** * @file * @ingroup zynq_interrupt @@ -5,8 +7,6 @@ */ /* - * SPDX-License-Identifier: BSD-2-Clause - * * Copyright (C) 2013 embedded brains GmbH & Co. KG * * Redistribution and use in source and binary forms, with or without diff --git a/bsps/arm/xilinx-zynq/include/tm27.h b/bsps/arm/xilinx-zynq/include/tm27.h index 9f3f846c87..eecdcf32bf 100644 --- a/bsps/arm/xilinx-zynq/include/tm27.h +++ b/bsps/arm/xilinx-zynq/include/tm27.h @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: BSD-2-Clause */ + /** * @file * @ingroup zynq_tm27 @@ -5,8 +7,6 @@ */ /* - * SPDX-License-Identifier: BSD-2-Clause - * * Copyright (C) 2013 embedded brains GmbH & Co. KG * * Redistribution and use in source and binary forms, with or without diff --git a/bsps/arm/xilinx-zynqmp-rpu/console/console-config.c b/bsps/arm/xilinx-zynqmp-rpu/console/console-config.c index db03d1e9f3..b16e3021a1 100644 --- a/bsps/arm/xilinx-zynqmp-rpu/console/console-config.c +++ b/bsps/arm/xilinx-zynqmp-rpu/console/console-config.c @@ -1,6 +1,6 @@ +/* SPDX-License-Identifier: BSD-2-Clause */ + /* - * SPDX-License-Identifier: BSD-2-Clause - * * Copyright (C) 2013, 2017 embedded brains GmbH * * Copyright (C) 2019 DornerWorks diff --git a/bsps/arm/xilinx-zynqmp/console/console-config.c b/bsps/arm/xilinx-zynqmp/console/console-config.c index 550e930415..a57336cb3c 100644 --- a/bsps/arm/xilinx-zynqmp/console/console-config.c +++ b/bsps/arm/xilinx-zynqmp/console/console-config.c @@ -1,6 +1,6 @@ +/* SPDX-License-Identifier: BSD-2-Clause */ + /* - * SPDX-License-Identifier: BSD-2-Clause - * * Copyright (C) 2013, 2017 embedded brains GmbH & Co. KG * * Copyright (C) 2019 DornerWorks diff --git a/bsps/arm/xilinx-zynqmp/include/bsp.h b/bsps/arm/xilinx-zynqmp/include/bsp.h index cdc37b79a4..b26e7ca801 100644 --- a/bsps/arm/xilinx-zynqmp/include/bsp.h +++ b/bsps/arm/xilinx-zynqmp/include/bsp.h @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: BSD-2-Clause */ + /** * @file * @ingroup RTEMSBSPsARMZynqMP @@ -5,8 +7,6 @@ */ /* - * SPDX-License-Identifier: BSD-2-Clause - * * Copyright (C) 2013, 2014 embedded brains GmbH & Co. KG * * Copyright (C) 2019 DornerWorks diff --git a/bsps/arm/xilinx-zynqmp/include/bsp/irq.h b/bsps/arm/xilinx-zynqmp/include/bsp/irq.h index 2029fde773..a934838eb3 100644 --- a/bsps/arm/xilinx-zynqmp/include/bsp/irq.h +++ b/bsps/arm/xilinx-zynqmp/include/bsp/irq.h @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: BSD-2-Clause */ + /** * @file * @ingroup zynqmp_interrupt @@ -5,8 +7,6 @@ */ /* - * SPDX-License-Identifier: BSD-2-Clause - * * Copyright (C) 2013 embedded brains GmbH & Co. KG * * Copyright (C) 2019 DornerWorks diff --git a/bsps/arm/xilinx-zynqmp/start/bspreset.c b/bsps/arm/xilinx-zynqmp/start/bspreset.c index dfe3424342..a385835bfd 100644 --- a/bsps/arm/xilinx-zynqmp/start/bspreset.c +++ b/bsps/arm/xilinx-zynqmp/start/bspreset.c @@ -1,6 +1,6 @@ +/* SPDX-License-Identifier: BSD-2-Clause */ + /* - * SPDX-License-Identifier: BSD-2-Clause - * * Copyright (C) 2013 embedded brains GmbH & Co. KG * * Copyright (C) 2019 DornerWorks diff --git a/bsps/arm/xilinx-zynqmp/start/bspsmp.c b/bsps/arm/xilinx-zynqmp/start/bspsmp.c index e8b287ce06..d52202ee4a 100644 --- a/bsps/arm/xilinx-zynqmp/start/bspsmp.c +++ b/bsps/arm/xilinx-zynqmp/start/bspsmp.c @@ -1,6 +1,6 @@ +/* SPDX-License-Identifier: BSD-2-Clause */ + /* - * SPDX-License-Identifier: BSD-2-Clause - * * Copyright (C) 2014 embedded brains GmbH & Co. KG * * Copyright (C) 2019 DornerWorks diff --git a/bsps/arm/xilinx-zynqmp/start/bspstart.c b/bsps/arm/xilinx-zynqmp/start/bspstart.c index 585ab2a91d..7f0ad16889 100644 --- a/bsps/arm/xilinx-zynqmp/start/bspstart.c +++ b/bsps/arm/xilinx-zynqmp/start/bspstart.c @@ -1,6 +1,6 @@ +/* SPDX-License-Identifier: BSD-2-Clause */ + /* - * SPDX-License-Identifier: BSD-2-Clause - * * Copyright (C) 2013, 2015 embedded brains GmbH & Co. KG * * Copyright (C) 2019 DornerWorks diff --git a/bsps/arm/xilinx-zynqmp/start/bspstarthooks.c b/bsps/arm/xilinx-zynqmp/start/bspstarthooks.c index fba23515f7..751c1cbd00 100644 --- a/bsps/arm/xilinx-zynqmp/start/bspstarthooks.c +++ b/bsps/arm/xilinx-zynqmp/start/bspstarthooks.c @@ -1,6 +1,6 @@ +/* SPDX-License-Identifier: BSD-2-Clause */ + /* - * SPDX-License-Identifier: BSD-2-Clause - * * Copyright (C) 2013, 2014 embedded brains GmbH & Co. KG * * Copyright (C) 2019 DornerWorks diff --git a/bsps/arm/xilinx-zynqmp/start/bspstartmmu.c b/bsps/arm/xilinx-zynqmp/start/bspstartmmu.c index 99e88c0cc2..0c1607ec0d 100644 --- a/bsps/arm/xilinx-zynqmp/start/bspstartmmu.c +++ b/bsps/arm/xilinx-zynqmp/start/bspstartmmu.c @@ -1,6 +1,6 @@ +/* SPDX-License-Identifier: BSD-2-Clause */ + /* - * SPDX-License-Identifier: BSD-2-Clause - * * Copyright (C) 2013 embedded brains GmbH & Co. KG * * Copyright (C) 2019 DornerWorks