From 83d290c56fab2d38cd1ab4c4cc7099559c1d5046 Mon Sep 17 00:00:00 2001 From: Tom Rini Date: Sun, 6 May 2018 17:58:06 -0400 Subject: SPDX: Convert all of our single license tags to Linux Kernel style When U-Boot started using SPDX tags we were among the early adopters and there weren't a lot of other examples to borrow from. So we picked the area of the file that usually had a full license text and replaced it with an appropriate SPDX-License-Identifier: entry. Since then, the Linux Kernel has adopted SPDX tags and they place it as the very first line in a file (except where shebangs are used, then it's second line) and with slightly different comment styles than us. In part due to community overlap, in part due to better tag visibility and in part for other minor reasons, switch over to that style. This commit changes all instances where we have a single declared license in the tag as both the before and after are identical in tag contents. There's also a few places where I found we did not have a tag and have introduced one. Signed-off-by: Tom Rini --- board/atmel/at91rm9200ek/Makefile | 4 +--- board/atmel/at91rm9200ek/at91rm9200ek.c | 3 +-- board/atmel/at91rm9200ek/led.c | 3 +-- board/atmel/at91sam9260ek/Makefile | 4 +--- board/atmel/at91sam9260ek/at91sam9260ek.c | 3 +-- board/atmel/at91sam9260ek/led.c | 3 +-- board/atmel/at91sam9261ek/Makefile | 4 +--- board/atmel/at91sam9261ek/at91sam9261ek.c | 3 +-- board/atmel/at91sam9261ek/led.c | 3 +-- board/atmel/at91sam9263ek/Makefile | 4 +--- board/atmel/at91sam9263ek/at91sam9263ek.c | 3 +-- board/atmel/at91sam9263ek/led.c | 3 +-- board/atmel/at91sam9m10g45ek/Makefile | 4 +--- board/atmel/at91sam9m10g45ek/at91sam9m10g45ek.c | 3 +-- board/atmel/at91sam9m10g45ek/led.c | 3 +-- board/atmel/at91sam9n12ek/Makefile | 4 +--- board/atmel/at91sam9n12ek/at91sam9n12ek.c | 3 +-- board/atmel/at91sam9rlek/Makefile | 4 +--- board/atmel/at91sam9rlek/at91sam9rlek.c | 3 +-- board/atmel/at91sam9rlek/led.c | 3 +-- board/atmel/at91sam9x5ek/Makefile | 4 +--- board/atmel/at91sam9x5ek/at91sam9x5ek.c | 3 +-- board/atmel/common/Makefile | 4 +--- board/atmel/common/board.c | 3 +-- board/atmel/common/mac_eeprom.c | 3 +-- board/atmel/common/video_display.c | 3 +-- board/atmel/sama5d27_som1_ek/Makefile | 4 +--- board/atmel/sama5d27_som1_ek/sama5d27_som1_ek.c | 3 +-- board/atmel/sama5d2_ptc_ek/Makefile | 4 +--- board/atmel/sama5d2_ptc_ek/sama5d2_ptc_ek.c | 3 +-- board/atmel/sama5d2_xplained/Makefile | 4 +--- board/atmel/sama5d2_xplained/sama5d2_xplained.c | 3 +-- board/atmel/sama5d3_xplained/Makefile | 4 +--- board/atmel/sama5d3_xplained/sama5d3_xplained.c | 3 +-- board/atmel/sama5d3xek/Makefile | 4 +--- board/atmel/sama5d3xek/sama5d3xek.c | 3 +-- board/atmel/sama5d4_xplained/Makefile | 4 +--- board/atmel/sama5d4_xplained/sama5d4_xplained.c | 3 +-- board/atmel/sama5d4ek/Makefile | 4 +--- board/atmel/sama5d4ek/sama5d4ek.c | 3 +-- 40 files changed, 40 insertions(+), 96 deletions(-) (limited to 'board/atmel') diff --git a/board/atmel/at91rm9200ek/Makefile b/board/atmel/at91rm9200ek/Makefile index 0530830b99..2d5c28082f 100644 --- a/board/atmel/at91rm9200ek/Makefile +++ b/board/atmel/at91rm9200ek/Makefile @@ -1,9 +1,7 @@ +# SPDX-License-Identifier: GPL-2.0+ # # (C) Copyright 2003-2008 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. -# -# SPDX-License-Identifier: GPL-2.0+ -# obj-y += at91rm9200ek.o obj-y += led.o diff --git a/board/atmel/at91rm9200ek/at91rm9200ek.c b/board/atmel/at91rm9200ek/at91rm9200ek.c index 36f147b44d..5d228fcc16 100644 --- a/board/atmel/at91rm9200ek/at91rm9200ek.c +++ b/board/atmel/at91rm9200ek/at91rm9200ek.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * (C) Copyright 2010 Andreas Bießmann * @@ -6,8 +7,6 @@ * (C) Copyright 2002 * Sysgo Real-Time Solutions, GmbH * Marius Groeger - * - * SPDX-License-Identifier: GPL-2.0+ */ #include diff --git a/board/atmel/at91rm9200ek/led.c b/board/atmel/at91rm9200ek/led.c index 5986ac08f9..a6b4d1fb65 100644 --- a/board/atmel/at91rm9200ek/led.c +++ b/board/atmel/at91rm9200ek/led.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * (C) Copyright 2006 * Atmel Nordic AB @@ -5,8 +6,6 @@ * * (C) Copyright 2010 * Andreas Bießmann - * - * SPDX-License-Identifier: GPL-2.0+ */ #include diff --git a/board/atmel/at91sam9260ek/Makefile b/board/atmel/at91sam9260ek/Makefile index ad95928701..56cac97508 100644 --- a/board/atmel/at91sam9260ek/Makefile +++ b/board/atmel/at91sam9260ek/Makefile @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: GPL-2.0+ # # (C) Copyright 2003-2008 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. @@ -5,9 +6,6 @@ # (C) Copyright 2008 # Stelian Pop # Lead Tech Design -# -# SPDX-License-Identifier: GPL-2.0+ -# obj-y += at91sam9260ek.o obj-$(CONFIG_AT91_LED) += led.o diff --git a/board/atmel/at91sam9260ek/at91sam9260ek.c b/board/atmel/at91sam9260ek/at91sam9260ek.c index d3ce947acf..9dcbfc450b 100644 --- a/board/atmel/at91sam9260ek/at91sam9260ek.c +++ b/board/atmel/at91sam9260ek/at91sam9260ek.c @@ -1,9 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * (C) Copyright 2007-2008 * Stelian Pop * Lead Tech Design - * - * SPDX-License-Identifier: GPL-2.0+ */ #include diff --git a/board/atmel/at91sam9260ek/led.c b/board/atmel/at91sam9260ek/led.c index fbe15afd28..2ea66b9b15 100644 --- a/board/atmel/at91sam9260ek/led.c +++ b/board/atmel/at91sam9260ek/led.c @@ -1,9 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * (C) Copyright 2007-2008 * Stelian Pop * Lead Tech Design - * - * SPDX-License-Identifier: GPL-2.0+ */ #include diff --git a/board/atmel/at91sam9261ek/Makefile b/board/atmel/at91sam9261ek/Makefile index 1e807ecc14..7f5369f431 100644 --- a/board/atmel/at91sam9261ek/Makefile +++ b/board/atmel/at91sam9261ek/Makefile @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: GPL-2.0+ # # (C) Copyright 2003-2008 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. @@ -5,9 +6,6 @@ # (C) Copyright 2008 # Stelian Pop # Lead Tech Design -# -# SPDX-License-Identifier: GPL-2.0+ -# obj-y += at91sam9261ek.o obj-$(CONFIG_AT91_LED) += led.o diff --git a/board/atmel/at91sam9261ek/at91sam9261ek.c b/board/atmel/at91sam9261ek/at91sam9261ek.c index c11bb2cd10..6f15bc6776 100644 --- a/board/atmel/at91sam9261ek/at91sam9261ek.c +++ b/board/atmel/at91sam9261ek/at91sam9261ek.c @@ -1,9 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * (C) Copyright 2007-2008 * Stelian Pop * Lead Tech Design - * - * SPDX-License-Identifier: GPL-2.0+ */ #include diff --git a/board/atmel/at91sam9261ek/led.c b/board/atmel/at91sam9261ek/led.c index 485d7ea81f..81967864cf 100644 --- a/board/atmel/at91sam9261ek/led.c +++ b/board/atmel/at91sam9261ek/led.c @@ -1,9 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * (C) Copyright 2007-2008 * Stelian Pop * Lead Tech Design - * - * SPDX-License-Identifier: GPL-2.0+ */ #include diff --git a/board/atmel/at91sam9263ek/Makefile b/board/atmel/at91sam9263ek/Makefile index b7a30ee6ef..44c8d95a08 100644 --- a/board/atmel/at91sam9263ek/Makefile +++ b/board/atmel/at91sam9263ek/Makefile @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: GPL-2.0+ # # (C) Copyright 2003-2008 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. @@ -5,9 +6,6 @@ # (C) Copyright 2008 # Stelian Pop # Lead Tech Design -# -# SPDX-License-Identifier: GPL-2.0+ -# obj-y += at91sam9263ek.o obj-$(CONFIG_AT91_LED) += led.o diff --git a/board/atmel/at91sam9263ek/at91sam9263ek.c b/board/atmel/at91sam9263ek/at91sam9263ek.c index bb06e5667a..2d882174de 100644 --- a/board/atmel/at91sam9263ek/at91sam9263ek.c +++ b/board/atmel/at91sam9263ek/at91sam9263ek.c @@ -1,9 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * (C) Copyright 2007-2008 * Stelian Pop * Lead Tech Design - * - * SPDX-License-Identifier: GPL-2.0+ */ #include diff --git a/board/atmel/at91sam9263ek/led.c b/board/atmel/at91sam9263ek/led.c index 21d81def5e..55fb80dc8d 100644 --- a/board/atmel/at91sam9263ek/led.c +++ b/board/atmel/at91sam9263ek/led.c @@ -1,9 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * (C) Copyright 2007-2008 * Stelian Pop * Lead Tech Design - * - * SPDX-License-Identifier: GPL-2.0+ */ #include diff --git a/board/atmel/at91sam9m10g45ek/Makefile b/board/atmel/at91sam9m10g45ek/Makefile index 55cd9468a4..b05b81bac6 100644 --- a/board/atmel/at91sam9m10g45ek/Makefile +++ b/board/atmel/at91sam9m10g45ek/Makefile @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: GPL-2.0+ # # (C) Copyright 2003-2008 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. @@ -5,9 +6,6 @@ # (C) Copyright 2008 # Stelian Pop # Lead Tech Design -# -# SPDX-License-Identifier: GPL-2.0+ -# obj-y += at91sam9m10g45ek.o obj-(CONFIG_AT91_LED) += led.o diff --git a/board/atmel/at91sam9m10g45ek/at91sam9m10g45ek.c b/board/atmel/at91sam9m10g45ek/at91sam9m10g45ek.c index 78ddbbbad1..3b277fc575 100644 --- a/board/atmel/at91sam9m10g45ek/at91sam9m10g45ek.c +++ b/board/atmel/at91sam9m10g45ek/at91sam9m10g45ek.c @@ -1,9 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * (C) Copyright 2007-2008 * Stelian Pop * Lead Tech Design - * - * SPDX-License-Identifier: GPL-2.0+ */ #include diff --git a/board/atmel/at91sam9m10g45ek/led.c b/board/atmel/at91sam9m10g45ek/led.c index 866052ee1c..feef230871 100644 --- a/board/atmel/at91sam9m10g45ek/led.c +++ b/board/atmel/at91sam9m10g45ek/led.c @@ -1,9 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * (C) Copyright 2007-2008 * Stelian Pop * Lead Tech Design - * - * SPDX-License-Identifier: GPL-2.0+ */ #include diff --git a/board/atmel/at91sam9n12ek/Makefile b/board/atmel/at91sam9n12ek/Makefile index 9f069ca74a..2ca5459a19 100644 --- a/board/atmel/at91sam9n12ek/Makefile +++ b/board/atmel/at91sam9n12ek/Makefile @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: GPL-2.0+ # # (C) Copyright 2003-2008 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. @@ -9,8 +10,5 @@ # (C) Copyright 2013 # Josh Wu # Atmel corporation -# -# SPDX-License-Identifier: GPL-2.0+ -# obj-y += at91sam9n12ek.o diff --git a/board/atmel/at91sam9n12ek/at91sam9n12ek.c b/board/atmel/at91sam9n12ek/at91sam9n12ek.c index 540adf55b6..b2bb7ec992 100644 --- a/board/atmel/at91sam9n12ek/at91sam9n12ek.c +++ b/board/atmel/at91sam9n12ek/at91sam9n12ek.c @@ -1,8 +1,7 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * (C) Copyright 2013 Atmel Corporation * Josh Wu - * - * SPDX-License-Identifier: GPL-2.0+ */ #include diff --git a/board/atmel/at91sam9rlek/Makefile b/board/atmel/at91sam9rlek/Makefile index 89f6c0833c..30dcb49130 100644 --- a/board/atmel/at91sam9rlek/Makefile +++ b/board/atmel/at91sam9rlek/Makefile @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: GPL-2.0+ # # (C) Copyright 2003-2008 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. @@ -5,9 +6,6 @@ # (C) Copyright 2008 # Stelian Pop # Lead Tech Design -# -# SPDX-License-Identifier: GPL-2.0+ -# obj-y += at91sam9rlek.o obj-$(CONFIG_AT91_LED) += led.o diff --git a/board/atmel/at91sam9rlek/at91sam9rlek.c b/board/atmel/at91sam9rlek/at91sam9rlek.c index 6b13bdf595..0393307315 100644 --- a/board/atmel/at91sam9rlek/at91sam9rlek.c +++ b/board/atmel/at91sam9rlek/at91sam9rlek.c @@ -1,9 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * (C) Copyright 2007-2008 * Stelian Pop * Lead Tech Design - * - * SPDX-License-Identifier: GPL-2.0+ */ #include diff --git a/board/atmel/at91sam9rlek/led.c b/board/atmel/at91sam9rlek/led.c index d593aba6e4..c2df6efd18 100644 --- a/board/atmel/at91sam9rlek/led.c +++ b/board/atmel/at91sam9rlek/led.c @@ -1,9 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * (C) Copyright 2007-2008 * Stelian Pop * Lead Tech Design - * - * SPDX-License-Identifier: GPL-2.0+ */ #include diff --git a/board/atmel/at91sam9x5ek/Makefile b/board/atmel/at91sam9x5ek/Makefile index 5c42b6fe86..e50948a5bb 100644 --- a/board/atmel/at91sam9x5ek/Makefile +++ b/board/atmel/at91sam9x5ek/Makefile @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: GPL-2.0+ # # (C) Copyright 2003-2008 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. @@ -9,8 +10,5 @@ # (C) Copyright 2012 # Bo Shen # Atmel corporation -# -# SPDX-License-Identifier: GPL-2.0+ -# obj-y += at91sam9x5ek.o diff --git a/board/atmel/at91sam9x5ek/at91sam9x5ek.c b/board/atmel/at91sam9x5ek/at91sam9x5ek.c index d69831ad15..3bb5cd667e 100644 --- a/board/atmel/at91sam9x5ek/at91sam9x5ek.c +++ b/board/atmel/at91sam9x5ek/at91sam9x5ek.c @@ -1,7 +1,6 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * Copyright (C) 2012 Atmel Corporation - * - * SPDX-License-Identifier: GPL-2.0+ */ #include diff --git a/board/atmel/common/Makefile b/board/atmel/common/Makefile index f68dd74953..4de0912f22 100644 --- a/board/atmel/common/Makefile +++ b/board/atmel/common/Makefile @@ -1,9 +1,7 @@ +# SPDX-License-Identifier: GPL-2.0+ # # Copyright (C) 2017 Microchip # Wenyou Yang -# -# SPDX-License-Identifier: GPL-2.0+ -# obj-y += board.o obj-$(CONFIG_I2C_EEPROM) += mac_eeprom.o diff --git a/board/atmel/common/board.c b/board/atmel/common/board.c index 7e326d925b..650eb2238c 100644 --- a/board/atmel/common/board.c +++ b/board/atmel/common/board.c @@ -1,8 +1,7 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * Copyright (C) 2017 Microchip * Wenyou Yang - * - * SPDX-License-Identifier: GPL-2.0+ */ #include diff --git a/board/atmel/common/mac_eeprom.c b/board/atmel/common/mac_eeprom.c index 91b86e0c62..7ff1ec7462 100644 --- a/board/atmel/common/mac_eeprom.c +++ b/board/atmel/common/mac_eeprom.c @@ -1,8 +1,7 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * Copyright (C) 2017 Microchip * Wenyou Yang - * - * SPDX-License-Identifier: GPL-2.0+ */ #include diff --git a/board/atmel/common/video_display.c b/board/atmel/common/video_display.c index b20abc7386..7dd7b85556 100644 --- a/board/atmel/common/video_display.c +++ b/board/atmel/common/video_display.c @@ -1,8 +1,7 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * Copyright (C) 2017 Microchip * Wenyou Yang - * - * SPDX-License-Identifier: GPL-2.0+ */ #include diff --git a/board/atmel/sama5d27_som1_ek/Makefile b/board/atmel/sama5d27_som1_ek/Makefile index 4ab242c4ac..72d320b1a0 100644 --- a/board/atmel/sama5d27_som1_ek/Makefile +++ b/board/atmel/sama5d27_som1_ek/Makefile @@ -1,8 +1,6 @@ +# SPDX-License-Identifier: GPL-2.0+ # # Copyright (C) 2017 Microchip Corporation # Wenyou Yang -# -# SPDX-License-Identifier: GPL-2.0+ -# obj-y += sama5d27_som1_ek.o diff --git a/board/atmel/sama5d27_som1_ek/sama5d27_som1_ek.c b/board/atmel/sama5d27_som1_ek/sama5d27_som1_ek.c index 80d772518d..d805068ac9 100644 --- a/board/atmel/sama5d27_som1_ek/sama5d27_som1_ek.c +++ b/board/atmel/sama5d27_som1_ek/sama5d27_som1_ek.c @@ -1,8 +1,7 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * Copyright (C) 2017 Microchip Corporation * Wenyou.Yang - * - * SPDX-License-Identifier: GPL-2.0+ */ #include diff --git a/board/atmel/sama5d2_ptc_ek/Makefile b/board/atmel/sama5d2_ptc_ek/Makefile index 9fe4b410a1..22f4664394 100644 --- a/board/atmel/sama5d2_ptc_ek/Makefile +++ b/board/atmel/sama5d2_ptc_ek/Makefile @@ -1,8 +1,6 @@ +# SPDX-License-Identifier: GPL-2.0+ # # Copyright (C) 2017 Microchip Corporation # Wenyou Yang -# -# SPDX-License-Identifier: GPL-2.0+ -# obj-y += sama5d2_ptc_ek.o diff --git a/board/atmel/sama5d2_ptc_ek/sama5d2_ptc_ek.c b/board/atmel/sama5d2_ptc_ek/sama5d2_ptc_ek.c index 4c2e20977e..ff6efbf383 100644 --- a/board/atmel/sama5d2_ptc_ek/sama5d2_ptc_ek.c +++ b/board/atmel/sama5d2_ptc_ek/sama5d2_ptc_ek.c @@ -1,8 +1,7 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * Copyright (C) 2017 Microchip Corporation * Wenyou Yang - * - * SPDX-License-Identifier: GPL-2.0+ */ #include diff --git a/board/atmel/sama5d2_xplained/Makefile b/board/atmel/sama5d2_xplained/Makefile index 420870b561..39ba24d5f5 100644 --- a/board/atmel/sama5d2_xplained/Makefile +++ b/board/atmel/sama5d2_xplained/Makefile @@ -1,8 +1,6 @@ +# SPDX-License-Identifier: GPL-2.0+ # # Copyright (C) 2015 Atmel Corporation # Wenyou Yang -# -# SPDX-License-Identifier: GPL-2.0+ -# obj-y += sama5d2_xplained.o diff --git a/board/atmel/sama5d2_xplained/sama5d2_xplained.c b/board/atmel/sama5d2_xplained/sama5d2_xplained.c index 778142ac71..0ae2e2fec6 100644 --- a/board/atmel/sama5d2_xplained/sama5d2_xplained.c +++ b/board/atmel/sama5d2_xplained/sama5d2_xplained.c @@ -1,8 +1,7 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * Copyright (C) 2015 Atmel Corporation * Wenyou.Yang - * - * SPDX-License-Identifier: GPL-2.0+ */ #include diff --git a/board/atmel/sama5d3_xplained/Makefile b/board/atmel/sama5d3_xplained/Makefile index ec82b06990..b6bcd3c0aa 100644 --- a/board/atmel/sama5d3_xplained/Makefile +++ b/board/atmel/sama5d3_xplained/Makefile @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: GPL-2.0+ # # (C) Copyright 2003-2008 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. @@ -8,8 +9,5 @@ # # (C) Copyright 2014 # Bo Shen -# -# SPDX-License-Identifier: GPL-2.0+ -# obj-y += sama5d3_xplained.o diff --git a/board/atmel/sama5d3_xplained/sama5d3_xplained.c b/board/atmel/sama5d3_xplained/sama5d3_xplained.c index f32e86b0cb..c47f63864b 100644 --- a/board/atmel/sama5d3_xplained/sama5d3_xplained.c +++ b/board/atmel/sama5d3_xplained/sama5d3_xplained.c @@ -1,8 +1,7 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * Copyright (C) 2014 Atmel Corporation * Bo Shen - * - * SPDX-License-Identifier: GPL-2.0+ */ #include diff --git a/board/atmel/sama5d3xek/Makefile b/board/atmel/sama5d3xek/Makefile index 7ff74810ce..6fe1b13b0f 100644 --- a/board/atmel/sama5d3xek/Makefile +++ b/board/atmel/sama5d3xek/Makefile @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: GPL-2.0+ # # (C) Copyright 2003-2008 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. @@ -8,8 +9,5 @@ # # (C) Copyright 2013 # Bo Shen -# -# SPDX-License-Identifier: GPL-2.0+ -# obj-y += sama5d3xek.o diff --git a/board/atmel/sama5d3xek/sama5d3xek.c b/board/atmel/sama5d3xek/sama5d3xek.c index 98d846fd79..e373f45800 100644 --- a/board/atmel/sama5d3xek/sama5d3xek.c +++ b/board/atmel/sama5d3xek/sama5d3xek.c @@ -1,8 +1,7 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * Copyright (C) 2012 - 2013 Atmel Corporation * Bo Shen - * - * SPDX-License-Identifier: GPL-2.0+ */ #include diff --git a/board/atmel/sama5d4_xplained/Makefile b/board/atmel/sama5d4_xplained/Makefile index c59b12df24..a79a97420f 100644 --- a/board/atmel/sama5d4_xplained/Makefile +++ b/board/atmel/sama5d4_xplained/Makefile @@ -1,8 +1,6 @@ +# SPDX-License-Identifier: GPL-2.0+ # # Copyright (C) 2014 Atmel # Bo Shen -# -# SPDX-License-Identifier: GPL-2.0+ -# obj-y += sama5d4_xplained.o diff --git a/board/atmel/sama5d4_xplained/sama5d4_xplained.c b/board/atmel/sama5d4_xplained/sama5d4_xplained.c index 78eddb8beb..526c6c7f70 100644 --- a/board/atmel/sama5d4_xplained/sama5d4_xplained.c +++ b/board/atmel/sama5d4_xplained/sama5d4_xplained.c @@ -1,8 +1,7 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * Copyright (C) 2014 Atmel * Bo Shen - * - * SPDX-License-Identifier: GPL-2.0+ */ #include diff --git a/board/atmel/sama5d4ek/Makefile b/board/atmel/sama5d4ek/Makefile index 55823ba77b..b5696c8c02 100644 --- a/board/atmel/sama5d4ek/Makefile +++ b/board/atmel/sama5d4ek/Makefile @@ -1,8 +1,6 @@ +# SPDX-License-Identifier: GPL-2.0+ # # Copyright (C) 2014 Atmel # Bo Shen -# -# SPDX-License-Identifier: GPL-2.0+ -# obj-y += sama5d4ek.o diff --git a/board/atmel/sama5d4ek/sama5d4ek.c b/board/atmel/sama5d4ek/sama5d4ek.c index 48c43f0163..2708d8e75e 100644 --- a/board/atmel/sama5d4ek/sama5d4ek.c +++ b/board/atmel/sama5d4ek/sama5d4ek.c @@ -1,8 +1,7 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * Copyright (C) 2014 Atmel * Bo Shen - * - * SPDX-License-Identifier: GPL-2.0+ */ #include -- cgit v1.2.1