diff options
author | Tom Rini | 2018-05-06 17:58:06 -0400 |
---|---|---|
committer | Tom Rini | 2018-05-07 09:34:12 -0400 |
commit | 83d290c56fab2d38cd1ab4c4cc7099559c1d5046 (patch) | |
tree | 5e5d1b40b52aaf96b707e0da2474573306d22f7b /board/ti | |
parent | 7ce85318cfff5fd82a059131761559cba7fef309 (diff) |
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 <trini@konsulko.com>
Diffstat (limited to 'board/ti')
53 files changed, 53 insertions, 119 deletions
diff --git a/board/ti/am335x/Makefile b/board/ti/am335x/Makefile index 804ac379dbd..c34b9b1dd8a 100644 --- a/board/ti/am335x/Makefile +++ b/board/ti/am335x/Makefile @@ -1,10 +1,8 @@ +# SPDX-License-Identifier: GPL-2.0+ # # Makefile # # Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/ -# -# SPDX-License-Identifier: GPL-2.0+ -# ifeq ($(CONFIG_SKIP_LOWLEVEL_INIT),) obj-y := mux.o diff --git a/board/ti/am335x/board.c b/board/ti/am335x/board.c index 896b9b63bbb..147ff0b2f00 100644 --- a/board/ti/am335x/board.c +++ b/board/ti/am335x/board.c @@ -1,11 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * board.c * * Board functions for TI AM335X based boards * * Copyright (C) 2011, Texas Instruments, Incorporated - http://www.ti.com/ - * - * SPDX-License-Identifier: GPL-2.0+ */ #include <common.h> diff --git a/board/ti/am335x/board.h b/board/ti/am335x/board.h index bab5b77f343..652b10b5e4c 100644 --- a/board/ti/am335x/board.h +++ b/board/ti/am335x/board.h @@ -1,11 +1,10 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ /* * board.h * * TI AM335x boards information header * * Copyright (C) 2011, Texas Instruments, Incorporated - http://www.ti.com/ - * - * SPDX-License-Identifier: GPL-2.0+ */ #ifndef _BOARD_H_ diff --git a/board/ti/am3517crane/Makefile b/board/ti/am3517crane/Makefile index 9da795de95d..eab04003232 100644 --- a/board/ti/am3517crane/Makefile +++ b/board/ti/am3517crane/Makefile @@ -1,11 +1,9 @@ +# SPDX-License-Identifier: GPL-2.0+ # # Author: Srinath R <srinath@mistralsolutions.com> # # Based on logicpd/am3517evm/Makefile # # Copyright (C) 2011 Mistral Solutions Pvt Ltd -# -# SPDX-License-Identifier: GPL-2.0+ -# obj-y := am3517crane.o diff --git a/board/ti/am3517crane/am3517crane.c b/board/ti/am3517crane/am3517crane.c index 136cc438849..5d4e57ffc5c 100644 --- a/board/ti/am3517crane/am3517crane.c +++ b/board/ti/am3517crane/am3517crane.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * am3517crane.c - board file for AM3517 CraneBoard * @@ -6,8 +7,6 @@ * Based on logicpd/am3517evm/am3517evm.c * * Copyright (C) 2011 Mistral Solutions Pvt Ltd - * - * SPDX-License-Identifier: GPL-2.0+ */ #include <common.h> diff --git a/board/ti/am3517crane/am3517crane.h b/board/ti/am3517crane/am3517crane.h index 6289ca787c1..1e6dece14bc 100644 --- a/board/ti/am3517crane/am3517crane.h +++ b/board/ti/am3517crane/am3517crane.h @@ -1,3 +1,4 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ /* * am3517crane.h - Header file for the AM3517 CraneBoard. * @@ -6,8 +7,6 @@ * Based on logicpd/am3517evm/am3517evm.h * * Copyright (C) 2011 Mistral Solutions Pvt Ltd - * - * SPDX-License-Identifier: GPL-2.0+ */ #ifndef _AM3517CRANE_H_ diff --git a/board/ti/am43xx/Makefile b/board/ti/am43xx/Makefile index 36ecb302c1f..60a11d8c04d 100644 --- a/board/ti/am43xx/Makefile +++ b/board/ti/am43xx/Makefile @@ -1,10 +1,8 @@ +# SPDX-License-Identifier: GPL-2.0+ # # Makefile # # Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com/ -# -# SPDX-License-Identifier: GPL-2.0+ -# ifeq ($(CONFIG_SKIP_LOWLEVEL_INIT),) obj-y := mux.o diff --git a/board/ti/am43xx/board.c b/board/ti/am43xx/board.c index 44f9774eb94..2a59b060351 100644 --- a/board/ti/am43xx/board.c +++ b/board/ti/am43xx/board.c @@ -1,11 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * board.c * * Board functions for TI AM43XX based boards * * Copyright (C) 2013, Texas Instruments, Incorporated - http://www.ti.com/ - * - * SPDX-License-Identifier: GPL-2.0+ */ #include <common.h> diff --git a/board/ti/am43xx/board.h b/board/ti/am43xx/board.h index 3f93d137270..06b737445d4 100644 --- a/board/ti/am43xx/board.h +++ b/board/ti/am43xx/board.h @@ -1,3 +1,4 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ /* * board.h * @@ -5,8 +6,6 @@ * Derived from AM335x board. * * Copyright (C) 2013, Texas Instruments, Incorporated - http://www.ti.com/ - * - * SPDX-License-Identifier: GPL-2.0+ */ #ifndef _BOARD_H_ diff --git a/board/ti/am43xx/mux.c b/board/ti/am43xx/mux.c index f26b21e8695..a61987e4c6a 100644 --- a/board/ti/am43xx/mux.c +++ b/board/ti/am43xx/mux.c @@ -1,9 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * mux.c * * Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com/ - * - * SPDX-License-Identifier: GPL-2.0+ */ #include <common.h> diff --git a/board/ti/am57xx/Makefile b/board/ti/am57xx/Makefile index 5cd6873f5e9..2a6fb9e42c2 100644 --- a/board/ti/am57xx/Makefile +++ b/board/ti/am57xx/Makefile @@ -1,8 +1,6 @@ +# SPDX-License-Identifier: GPL-2.0+ # # (C) Copyright 2014 # Texas Instruments, <www.ti.com> -# -# SPDX-License-Identifier: GPL-2.0+ -# obj-y := board.o diff --git a/board/ti/am57xx/board.c b/board/ti/am57xx/board.c index 5bd87785639..fd9d20779be 100644 --- a/board/ti/am57xx/board.c +++ b/board/ti/am57xx/board.c @@ -1,11 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * Copyright (C) 2014 Texas Instruments Incorporated - http://www.ti.com * * Author: Felipe Balbi <balbi@ti.com> * * Based on board/ti/dra7xx/evm.c - * - * SPDX-License-Identifier: GPL-2.0+ */ #include <common.h> diff --git a/board/ti/am57xx/mux_data.h b/board/ti/am57xx/mux_data.h index a48f681840d..4deaddc9141 100644 --- a/board/ti/am57xx/mux_data.h +++ b/board/ti/am57xx/mux_data.h @@ -1,11 +1,10 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ /* * Copyright (C) 2014 Texas Instruments Incorporated - http://www.ti.com * * Author: Felipe Balbi <balbi@ti.com> * * Based on board/ti/dra7xx/evm.c - * - * SPDX-License-Identifier: GPL-2.0+ */ #ifndef _MUX_DATA_BEAGLE_X15_H_ #define _MUX_DATA_BEAGLE_X15_H_ diff --git a/board/ti/beagle/Makefile b/board/ti/beagle/Makefile index 41b552ac0ef..fc9288cf186 100644 --- a/board/ti/beagle/Makefile +++ b/board/ti/beagle/Makefile @@ -1,9 +1,7 @@ +# SPDX-License-Identifier: GPL-2.0+ # # (C) Copyright 2000, 2001, 2002 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. -# -# SPDX-License-Identifier: GPL-2.0+ -# obj-y := beagle.o obj-$(CONFIG_LED_STATUS) += led.o diff --git a/board/ti/beagle/beagle.c b/board/ti/beagle/beagle.c index 1d552647335..826aace3fba 100644 --- a/board/ti/beagle/beagle.c +++ b/board/ti/beagle/beagle.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * (C) Copyright 2004-2011 * Texas Instruments, <www.ti.com> @@ -10,8 +11,6 @@ * Richard Woodruff <r-woodruff2@ti.com> * Syed Mohammed Khasim <khasim@ti.com> * - * - * SPDX-License-Identifier: GPL-2.0+ */ #include <common.h> #include <dm.h> diff --git a/board/ti/beagle/beagle.h b/board/ti/beagle/beagle.h index 86bd6e9136a..ce78ea661b9 100644 --- a/board/ti/beagle/beagle.h +++ b/board/ti/beagle/beagle.h @@ -1,8 +1,7 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ /* * (C) Copyright 2008 * Dirk Behme <dirk.behme@gmail.com> - * - * SPDX-License-Identifier: GPL-2.0+ */ #ifndef _BEAGLE_H_ #define _BEAGLE_H_ diff --git a/board/ti/beagle/led.c b/board/ti/beagle/led.c index 30b8b93da5a..e21c0169db7 100644 --- a/board/ti/beagle/led.c +++ b/board/ti/beagle/led.c @@ -1,8 +1,7 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * Copyright (c) 2010 Texas Instruments, Inc. * Jason Kridner <jkridner@beagleboard.org> - * - * SPDX-License-Identifier: GPL-2.0+ */ #include <common.h> #include <status_led.h> diff --git a/board/ti/common/Makefile b/board/ti/common/Makefile index 7170eac81e8..cb97f226ae5 100644 --- a/board/ti/common/Makefile +++ b/board/ti/common/Makefile @@ -1,6 +1,4 @@ +# SPDX-License-Identifier: GPL-2.0+ # Copyright (C) 2015-2016 Texas Instruments Incorporated - http://www.ti.com/ -# -# SPDX-License-Identifier: GPL-2.0+ -# obj-${CONFIG_TI_I2C_BOARD_DETECT} += board_detect.o diff --git a/board/ti/common/board_detect.c b/board/ti/common/board_detect.c index 6f07ec331af..c475f106b2f 100644 --- a/board/ti/common/board_detect.c +++ b/board/ti/common/board_detect.c @@ -1,11 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * Library to support early TI EVM EEPROM handling * * Copyright (C) 2015-2016 Texas Instruments Incorporated - http://www.ti.com/ * Lokesh Vutla * Steve Kipisz - * - * SPDX-License-Identifier: GPL-2.0+ */ #include <common.h> diff --git a/board/ti/common/board_detect.h b/board/ti/common/board_detect.h index 893e1ed998d..f8495a7a7cf 100644 --- a/board/ti/common/board_detect.h +++ b/board/ti/common/board_detect.h @@ -1,9 +1,8 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ /* * Library to support early TI EVM EEPROM handling * * Copyright (C) 2015-2016 Texas Instruments Incorporated - http://www.ti.com - * - * SPDX-License-Identifier: GPL-2.0+ */ #ifndef __BOARD_DETECT_H diff --git a/board/ti/dra7xx/Makefile b/board/ti/dra7xx/Makefile index 434e8d128e7..8d0ca56aded 100644 --- a/board/ti/dra7xx/Makefile +++ b/board/ti/dra7xx/Makefile @@ -1,8 +1,6 @@ +# SPDX-License-Identifier: GPL-2.0+ # # (C) Copyright 2013 # Texas Instruments, <www.ti.com> -# -# SPDX-License-Identifier: GPL-2.0+ -# obj-y := evm.o diff --git a/board/ti/dra7xx/evm.c b/board/ti/dra7xx/evm.c index 06f061c92c8..6918f4de01f 100644 --- a/board/ti/dra7xx/evm.c +++ b/board/ti/dra7xx/evm.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * (C) Copyright 2013 * Texas Instruments Incorporated, <www.ti.com> @@ -7,8 +8,6 @@ * Based on previous work by: * Aneesh V <aneesh@ti.com> * Steve Sakoman <steve@sakoman.com> - * - * SPDX-License-Identifier: GPL-2.0+ */ #include <common.h> #include <palmas.h> diff --git a/board/ti/dra7xx/mux_data.h b/board/ti/dra7xx/mux_data.h index 32c9ecacce2..72355e801b8 100644 --- a/board/ti/dra7xx/mux_data.h +++ b/board/ti/dra7xx/mux_data.h @@ -1,11 +1,10 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ /* * (C) Copyright 2013 * Texas Instruments Incorporated, <www.ti.com> * * Sricharan R <r.sricharan@ti.com> * Nishant Kamat <nskamat@ti.com> - * - * SPDX-License-Identifier: GPL-2.0+ */ #ifndef _MUX_DATA_DRA7XX_H_ #define _MUX_DATA_DRA7XX_H_ diff --git a/board/ti/evm/Makefile b/board/ti/evm/Makefile index b88ab8f517a..17ee516d262 100644 --- a/board/ti/evm/Makefile +++ b/board/ti/evm/Makefile @@ -1,8 +1,6 @@ +# SPDX-License-Identifier: GPL-2.0+ # # (C) Copyright 2000, 2001, 2002 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. -# -# SPDX-License-Identifier: GPL-2.0+ -# obj-y := evm.o diff --git a/board/ti/evm/evm.c b/board/ti/evm/evm.c index 3a9680ffecf..c59aff595ad 100644 --- a/board/ti/evm/evm.c +++ b/board/ti/evm/evm.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * (C) Copyright 2004-2011 * Texas Instruments, <www.ti.com> @@ -8,8 +9,6 @@ * Derived from Beagle Board and 3430 SDP code by * Richard Woodruff <r-woodruff2@ti.com> * Syed Mohammed Khasim <khasim@ti.com> - * - * SPDX-License-Identifier: GPL-2.0+ */ #include <common.h> #include <dm.h> diff --git a/board/ti/evm/evm.h b/board/ti/evm/evm.h index 0f8268b33ed..09b08b490ae 100644 --- a/board/ti/evm/evm.h +++ b/board/ti/evm/evm.h @@ -1,8 +1,7 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ /* * (C) Copyright 2008 * Nishanth Menon <menon.nishanth@gmail.com> - * - * SPDX-License-Identifier: GPL-2.0+ */ #ifndef _EVM_H_ #define _EVM_H_ diff --git a/board/ti/ks2_evm/board.c b/board/ti/ks2_evm/board.c index ae86dfbe0aa..274f18e942f 100644 --- a/board/ti/ks2_evm/board.c +++ b/board/ti/ks2_evm/board.c @@ -1,10 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * Keystone : Board initialization * * (C) Copyright 2014 * Texas Instruments Incorporated, <www.ti.com> - * - * SPDX-License-Identifier: GPL-2.0+ */ #include <common.h> diff --git a/board/ti/ks2_evm/board.h b/board/ti/ks2_evm/board.h index 48d60a1c746..250b649d459 100644 --- a/board/ti/ks2_evm/board.h +++ b/board/ti/ks2_evm/board.h @@ -1,10 +1,9 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ /* * K2HK EVM : Board common header * * (C) Copyright 2014 * Texas Instruments Incorporated, <www.ti.com> - * - * SPDX-License-Identifier: GPL-2.0+ */ #ifndef _KS2_BOARD diff --git a/board/ti/ks2_evm/board_k2e.c b/board/ti/ks2_evm/board_k2e.c index e96636b6ecb..f86a8363c47 100644 --- a/board/ti/ks2_evm/board_k2e.c +++ b/board/ti/ks2_evm/board_k2e.c @@ -1,10 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * K2E EVM : Board initialization * * (C) Copyright 2014 * Texas Instruments Incorporated, <www.ti.com> - * - * SPDX-License-Identifier: GPL-2.0+ */ #include <common.h> diff --git a/board/ti/ks2_evm/board_k2g.c b/board/ti/ks2_evm/board_k2g.c index b9575a8e467..9bc94fb69ee 100644 --- a/board/ti/ks2_evm/board_k2g.c +++ b/board/ti/ks2_evm/board_k2g.c @@ -1,10 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * K2G EVM : Board initialization * * (C) Copyright 2015 * Texas Instruments Incorporated, <www.ti.com> - * - * SPDX-License-Identifier: GPL-2.0+ */ #include <common.h> #include <asm/arch/clock.h> diff --git a/board/ti/ks2_evm/board_k2hk.c b/board/ti/ks2_evm/board_k2hk.c index d61f72921ae..abc89d84bdc 100644 --- a/board/ti/ks2_evm/board_k2hk.c +++ b/board/ti/ks2_evm/board_k2hk.c @@ -1,10 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * K2HK EVM : Board initialization * * (C) Copyright 2012-2014 * Texas Instruments Incorporated, <www.ti.com> - * - * SPDX-License-Identifier: GPL-2.0+ */ #include <common.h> diff --git a/board/ti/ks2_evm/board_k2l.c b/board/ti/ks2_evm/board_k2l.c index b114c246905..c28fad51b61 100644 --- a/board/ti/ks2_evm/board_k2l.c +++ b/board/ti/ks2_evm/board_k2l.c @@ -1,10 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * K2L EVM : Board initialization * * (C) Copyright 2014 * Texas Instruments Incorporated, <www.ti.com> - * - * SPDX-License-Identifier: GPL-2.0+ */ #include <common.h> diff --git a/board/ti/ks2_evm/ddr3_cfg.c b/board/ti/ks2_evm/ddr3_cfg.c index b6b59a4dd5b..0ade75263f8 100644 --- a/board/ti/ks2_evm/ddr3_cfg.c +++ b/board/ti/ks2_evm/ddr3_cfg.c @@ -1,10 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * Keystone2: DDR3 configuration * * (C) Copyright 2012-2014 * Texas Instruments Incorporated, <www.ti.com> - * - * SPDX-License-Identifier: GPL-2.0+ */ #include <common.h> diff --git a/board/ti/ks2_evm/ddr3_cfg.h b/board/ti/ks2_evm/ddr3_cfg.h index f95eddec330..4f7462dec63 100644 --- a/board/ti/ks2_evm/ddr3_cfg.h +++ b/board/ti/ks2_evm/ddr3_cfg.h @@ -1,10 +1,9 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ /* * Keystone2: DDR3 configuration * * (C) Copyright 2012-2014 * Texas Instruments Incorporated, <www.ti.com> - * - * SPDX-License-Identifier: GPL-2.0+ */ #ifndef __DDR3_CFG_H diff --git a/board/ti/ks2_evm/ddr3_k2e.c b/board/ti/ks2_evm/ddr3_k2e.c index e82aa6699b1..95fe3a9021e 100644 --- a/board/ti/ks2_evm/ddr3_k2e.c +++ b/board/ti/ks2_evm/ddr3_k2e.c @@ -1,10 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * Keystone2: DDR3 initialization * * (C) Copyright 2014-2015 * Texas Instruments Incorporated, <www.ti.com> - * - * SPDX-License-Identifier: GPL-2.0+ */ #include <common.h> diff --git a/board/ti/ks2_evm/ddr3_k2g.c b/board/ti/ks2_evm/ddr3_k2g.c index 3398246e288..563c5e9950c 100644 --- a/board/ti/ks2_evm/ddr3_k2g.c +++ b/board/ti/ks2_evm/ddr3_k2g.c @@ -1,10 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * K2G: DDR3 initialization * * (C) Copyright 2015 * Texas Instruments Incorporated, <www.ti.com> - * - * SPDX-License-Identifier: GPL-2.0+ */ #include <common.h> diff --git a/board/ti/ks2_evm/ddr3_k2hk.c b/board/ti/ks2_evm/ddr3_k2hk.c index f8484221fa1..198c5da0e62 100644 --- a/board/ti/ks2_evm/ddr3_k2hk.c +++ b/board/ti/ks2_evm/ddr3_k2hk.c @@ -1,10 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * Keystone2: DDR3 initialization * * (C) Copyright 2012-2014 * Texas Instruments Incorporated, <www.ti.com> - * - * SPDX-License-Identifier: GPL-2.0+ */ #include <common.h> diff --git a/board/ti/ks2_evm/ddr3_k2l.c b/board/ti/ks2_evm/ddr3_k2l.c index 00fc1943f52..805bf81f6bd 100644 --- a/board/ti/ks2_evm/ddr3_k2l.c +++ b/board/ti/ks2_evm/ddr3_k2l.c @@ -1,10 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * Keystone2: DDR3 initialization * * (C) Copyright 2014 * Texas Instruments Incorporated, <www.ti.com> - * - * SPDX-License-Identifier: GPL-2.0+ */ #include <common.h> diff --git a/board/ti/ks2_evm/mux-k2g.h b/board/ti/ks2_evm/mux-k2g.h index f7d36d132ec..706fb7e8381 100644 --- a/board/ti/ks2_evm/mux-k2g.h +++ b/board/ti/ks2_evm/mux-k2g.h @@ -1,10 +1,9 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ /* * K2G EVM: Pinmux configuration * * (C) Copyright 2015 * Texas Instruments Incorporated, <www.ti.com> - * - * SPDX-License-Identifier: GPL-2.0+ */ #include <common.h> diff --git a/board/ti/omap5_uevm/Makefile b/board/ti/omap5_uevm/Makefile index b88ab8f517a..17ee516d262 100644 --- a/board/ti/omap5_uevm/Makefile +++ b/board/ti/omap5_uevm/Makefile @@ -1,8 +1,6 @@ +# SPDX-License-Identifier: GPL-2.0+ # # (C) Copyright 2000, 2001, 2002 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. -# -# SPDX-License-Identifier: GPL-2.0+ -# obj-y := evm.o diff --git a/board/ti/omap5_uevm/evm.c b/board/ti/omap5_uevm/evm.c index 67242f5cc83..ee7efcbfa7c 100644 --- a/board/ti/omap5_uevm/evm.c +++ b/board/ti/omap5_uevm/evm.c @@ -1,10 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * (C) Copyright 2010 * Texas Instruments Incorporated, <www.ti.com> * Aneesh V <aneesh@ti.com> * Steve Sakoman <steve@sakoman.com> - * - * SPDX-License-Identifier: GPL-2.0+ */ #include <common.h> #include <palmas.h> diff --git a/board/ti/omap5_uevm/mux_data.h b/board/ti/omap5_uevm/mux_data.h index de7ce9fe0bb..3c4ba474977 100644 --- a/board/ti/omap5_uevm/mux_data.h +++ b/board/ti/omap5_uevm/mux_data.h @@ -1,10 +1,9 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ /* * (C) Copyright 2010 * Texas Instruments Incorporated, <www.ti.com> * * Sricharan R <r.sricharan@ti.com> - * - * SPDX-License-Identifier: GPL-2.0+ */ #ifndef _EVM5430_MUX_DATA_H #define _EVM5430_MUX_DATA_H diff --git a/board/ti/panda/Makefile b/board/ti/panda/Makefile index c89f80d8064..dd2ff33afaa 100644 --- a/board/ti/panda/Makefile +++ b/board/ti/panda/Makefile @@ -1,8 +1,6 @@ +# SPDX-License-Identifier: GPL-2.0+ # # (C) Copyright 2000, 2001, 2002 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. -# -# SPDX-License-Identifier: GPL-2.0+ -# obj-y := panda.o diff --git a/board/ti/panda/panda.c b/board/ti/panda/panda.c index c59e58a82a5..f88aa4dfc65 100644 --- a/board/ti/panda/panda.c +++ b/board/ti/panda/panda.c @@ -1,9 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * (C) Copyright 2010 * Texas Instruments Incorporated, <www.ti.com> * Steve Sakoman <steve@sakoman.com> - * - * SPDX-License-Identifier: GPL-2.0+ */ #include <common.h> #include <asm/mach-types.h> diff --git a/board/ti/panda/panda_mux_data.h b/board/ti/panda/panda_mux_data.h index 53c70809794..ad9e36525b4 100644 --- a/board/ti/panda/panda_mux_data.h +++ b/board/ti/panda/panda_mux_data.h @@ -1,11 +1,10 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ /* * (C) Copyright 2010 * Texas Instruments Incorporated, <www.ti.com> * * Balaji Krishnamoorthy <balajitk@ti.com> * Aneesh V <aneesh@ti.com> - * - * SPDX-License-Identifier: GPL-2.0+ */ #ifndef _PANDA_MUX_DATA_H_ #define _PANDA_MUX_DATA_H_ diff --git a/board/ti/sdp4430/Makefile b/board/ti/sdp4430/Makefile index 79e67b6e963..ae06945612a 100644 --- a/board/ti/sdp4430/Makefile +++ b/board/ti/sdp4430/Makefile @@ -1,9 +1,7 @@ +# SPDX-License-Identifier: GPL-2.0+ # # (C) Copyright 2000, 2001, 2002 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. -# -# SPDX-License-Identifier: GPL-2.0+ -# obj-y := sdp.o diff --git a/board/ti/sdp4430/cmd_bat.c b/board/ti/sdp4430/cmd_bat.c index 4c7beeb3ef6..c820435386d 100644 --- a/board/ti/sdp4430/cmd_bat.c +++ b/board/ti/sdp4430/cmd_bat.c @@ -1,7 +1,6 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * Copyright (C) 2010 Texas Instruments - * - * SPDX-License-Identifier: GPL-2.0+ */ #include <common.h> diff --git a/board/ti/sdp4430/sdp.c b/board/ti/sdp4430/sdp.c index bc8d32f1612..e71c53e5ee4 100644 --- a/board/ti/sdp4430/sdp.c +++ b/board/ti/sdp4430/sdp.c @@ -1,10 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * (C) Copyright 2010 * Texas Instruments Incorporated, <www.ti.com> * Aneesh V <aneesh@ti.com> * Steve Sakoman <steve@sakoman.com> - * - * SPDX-License-Identifier: GPL-2.0+ */ #include <common.h> #include <twl6030.h> diff --git a/board/ti/sdp4430/sdp4430_mux_data.h b/board/ti/sdp4430/sdp4430_mux_data.h index 9a9efe7a546..934419f40e9 100644 --- a/board/ti/sdp4430/sdp4430_mux_data.h +++ b/board/ti/sdp4430/sdp4430_mux_data.h @@ -1,11 +1,10 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ /* * (C) Copyright 2010 * Texas Instruments Incorporated, <www.ti.com> * * Balaji Krishnamoorthy <balajitk@ti.com> * Aneesh V <aneesh@ti.com> - * - * SPDX-License-Identifier: GPL-2.0+ */ #ifndef _SDP4430_MUX_DATA_H #define _SDP4430_MUX_DATA_H diff --git a/board/ti/ti814x/Makefile b/board/ti/ti814x/Makefile index 93155de5330..c5ff8d07285 100644 --- a/board/ti/ti814x/Makefile +++ b/board/ti/ti814x/Makefile @@ -1,10 +1,8 @@ +# SPDX-License-Identifier: GPL-2.0+ # # Makefile # # Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com/ -# -# SPDX-License-Identifier: GPL-2.0+ -# ifdef CONFIG_SPL_BUILD obj-y := mux.o diff --git a/board/ti/ti814x/evm.c b/board/ti/ti814x/evm.c index 4a0f82975aa..d8ee51b3666 100644 --- a/board/ti/ti814x/evm.c +++ b/board/ti/ti814x/evm.c @@ -1,11 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * evm.c * * Board functions for TI814x EVM * * Copyright (C) 2011, Texas Instruments, Incorporated - http://www.ti.com/ - * - * SPDX-License-Identifier: GPL-2.0+ */ #include <common.h> diff --git a/board/ti/ti816x/Makefile b/board/ti/ti816x/Makefile index f1cc3d56166..f12712aea64 100644 --- a/board/ti/ti816x/Makefile +++ b/board/ti/ti816x/Makefile @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: GPL-2.0 # # Copyright (C) 2013, Adeneo Embedded <www.adeneo-embedded.com> # Antoine Tenart, <atenart@adeneo-embedded.com> @@ -5,8 +6,5 @@ # Based on TI-PSP-04.00.02.14 : # # Copyright (C) 2009, Texas Instruments, Incorporated -# -# SPDX-License-Identifier: GPL-2.0 -# obj-y := evm.o diff --git a/board/ti/ti816x/evm.c b/board/ti/ti816x/evm.c index abc961a86e0..07a084bab8a 100644 --- a/board/ti/ti816x/evm.c +++ b/board/ti/ti816x/evm.c @@ -1,10 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * evm.c * * Copyright (C) 2013, Adeneo Embedded <www.adeneo-embedded.com> * Antoine Tenart, <atenart@adeneo-embedded.com> - * - * SPDX-License-Identifier: GPL-2.0+ */ #include <common.h> |