* [U-Boot] [PATCH 2/2] spi: Add GPL-2.0+ SPDX-License-Identifier for missing ones
@ 2013-10-10 17:26 Jagannadha Sutradharudu Teki
2013-10-10 18:05 ` Tom Rini
0 siblings, 1 reply; 2+ messages in thread
From: Jagannadha Sutradharudu Teki @ 2013-10-10 17:26 UTC (permalink / raw)
To: u-boot
Added GPL-2.0+ SPDX-License-Identifier for missed spi
source files.
Signed-off-by: Jagannadha Sutradharudu Teki <jagannadh.teki@gmail.com>
Signed-off-by: Tom Warren <twarren.nvidia@gmail.com>
---
drivers/spi/altera_spi.c | 2 +-
drivers/spi/bfin_spi.c | 2 +-
drivers/spi/bfin_spi6xx.c | 13 +------------
drivers/spi/fdt_spi.c | 20 +++-----------------
drivers/spi/oc_tiny_spi.c | 2 +-
drivers/spi/sh_spi.c | 14 +-------------
drivers/spi/sh_spi.h | 14 +-------------
drivers/spi/tegra114_spi.c | 20 +++-----------------
drivers/spi/tegra20_slink.c | 20 +++-----------------
drivers/spi/xilinx_spi.c | 2 +-
drivers/spi/xilinx_spi.h | 2 +-
include/spi_flash.h | 7 +------
12 files changed, 18 insertions(+), 100 deletions(-)
diff --git a/drivers/spi/altera_spi.c b/drivers/spi/altera_spi.c
index b53607a..5accbb5 100644
--- a/drivers/spi/altera_spi.c
+++ b/drivers/spi/altera_spi.c
@@ -5,7 +5,7 @@
* Copyright (c) 2005-2008 Analog Devices Inc.
* Copyright (C) 2010 Thomas Chou <thomas@wytron.com.tw>
*
- * Licensed under the GPL-2 or later.
+ * SPDX-License-Identifier: GPL-2.0+
*/
#include <common.h>
#include <asm/io.h>
diff --git a/drivers/spi/bfin_spi.c b/drivers/spi/bfin_spi.c
index f7192c2..bb88f30 100644
--- a/drivers/spi/bfin_spi.c
+++ b/drivers/spi/bfin_spi.c
@@ -3,7 +3,7 @@
*
* Copyright (c) 2005-2010 Analog Devices Inc.
*
- * Licensed under the GPL-2 or later.
+ * SPDX-License-Identifier: GPL-2.0+
*/
/*#define DEBUG*/
diff --git a/drivers/spi/bfin_spi6xx.c b/drivers/spi/bfin_spi6xx.c
index c25c4a9..859a870 100644
--- a/drivers/spi/bfin_spi6xx.c
+++ b/drivers/spi/bfin_spi6xx.c
@@ -3,18 +3,7 @@
*
* Copyright (c) 2011 Analog Devices Inc.
*
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as
- * published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ * SPDX-License-Identifier: GPL-2.0+
*/
#include <common.h>
diff --git a/drivers/spi/fdt_spi.c b/drivers/spi/fdt_spi.c
index 58f139a..170df02 100644
--- a/drivers/spi/fdt_spi.c
+++ b/drivers/spi/fdt_spi.c
@@ -1,24 +1,10 @@
/*
* Common fdt based SPI driver front end
*
- * Copyright (c) 2013 NVIDIA Corporation
+ * Copyright (c) 2013
+ * NVIDIA Corporation <www.nvidia.com>
*
- * See file CREDITS for list of people who contributed to this
- * project.
- *
- * This software is licensed under the terms of the GNU General Public
- * License version 2, as published by the Free Software Foundation, and
- * may be copied, distributed, and modified under those terms.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
- * MA 02111-1307 USA
+ * SPDX-License-Identifier: GPL-2.0+
*/
#include <common.h>
diff --git a/drivers/spi/oc_tiny_spi.c b/drivers/spi/oc_tiny_spi.c
index 6f7b1ed..4de5d00 100644
--- a/drivers/spi/oc_tiny_spi.c
+++ b/drivers/spi/oc_tiny_spi.c
@@ -7,7 +7,7 @@
* Copyright (c) 2005-2008 Analog Devices Inc.
* Copyright (C) 2010 Thomas Chou <thomas@wytron.com.tw>
*
- * Licensed under the GPL-2 or later.
+ * SPDX-License-Identifier: GPL-2.0+
*/
#include <common.h>
diff --git a/drivers/spi/sh_spi.c b/drivers/spi/sh_spi.c
index 744afe3..07c80bb 100644
--- a/drivers/spi/sh_spi.c
+++ b/drivers/spi/sh_spi.c
@@ -3,19 +3,7 @@
*
* Copyright (C) 2011-2012 Renesas Solutions Corp.
*
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; version 2 of the License.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
- *
+ * SPDX-License-Identifier: GPL-2.0+
*/
#include <common.h>
diff --git a/drivers/spi/sh_spi.h b/drivers/spi/sh_spi.h
index 96b4b68..c106a71 100644
--- a/drivers/spi/sh_spi.h
+++ b/drivers/spi/sh_spi.h
@@ -3,19 +3,7 @@
*
* Copyright (C) 2011 Renesas Solutions Corp.
*
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; version 2 of the License.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
- *
+ * SPDX-License-Identifier: GPL-2.0+
*/
#ifndef __SH_SPI_H__
diff --git a/drivers/spi/tegra114_spi.c b/drivers/spi/tegra114_spi.c
index 4d2af48..d6e18de 100644
--- a/drivers/spi/tegra114_spi.c
+++ b/drivers/spi/tegra114_spi.c
@@ -1,24 +1,10 @@
/*
* NVIDIA Tegra SPI controller (T114 and later)
*
- * Copyright (c) 2010-2013 NVIDIA Corporation
+ * Copyright (c) 2010-2013
+ * NVIDIA Corporation <www.nvidia.com>
*
- * See file CREDITS for list of people who contributed to this
- * project.
- *
- * This software is licensed under the terms of the GNU General Public
- * License version 2, as published by the Free Software Foundation, and
- * may be copied, distributed, and modified under those terms.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
- * MA 02111-1307 USA
+ * SPDX-License-Identifier: GPL-2.0+
*/
#include <common.h>
diff --git a/drivers/spi/tegra20_slink.c b/drivers/spi/tegra20_slink.c
index 664de6e..697cae0 100644
--- a/drivers/spi/tegra20_slink.c
+++ b/drivers/spi/tegra20_slink.c
@@ -1,24 +1,10 @@
/*
* NVIDIA Tegra SPI-SLINK controller
*
- * Copyright (c) 2010-2013 NVIDIA Corporation
+ * Copyright (c) 2010-2013
+ * NVIDIA Corporation <www.nvidia.com>
*
- * See file CREDITS for list of people who contributed to this
- * project.
- *
- * This software is licensed under the terms of the GNU General Public
- * License version 2, as published by the Free Software Foundation, and
- * may be copied, distributed, and modified under those terms.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
- * MA 02111-1307 USA
+ * SPDX-License-Identifier: GPL-2.0+
*/
#include <common.h>
diff --git a/drivers/spi/xilinx_spi.c b/drivers/spi/xilinx_spi.c
index a82b056..5ac0184 100644
--- a/drivers/spi/xilinx_spi.c
+++ b/drivers/spi/xilinx_spi.c
@@ -9,7 +9,7 @@
* Copyright (c) 2010 Graeme Smecher <graeme.smecher@mail.mcgill.ca>
* Copyright (c) 2012 Stephan Linz <linz@li-pro.net>
*
- * Licensed under the GPL-2 or later.
+ * SPDX-License-Identifier: GPL-2.0+
*
* [0]: http://www.xilinx.com/support/documentation
*
diff --git a/drivers/spi/xilinx_spi.h b/drivers/spi/xilinx_spi.h
index 69d0b94..ce7d82c 100644
--- a/drivers/spi/xilinx_spi.h
+++ b/drivers/spi/xilinx_spi.h
@@ -9,7 +9,7 @@
* Copyright (c) 2010 Graeme Smecher <graeme.smecher@mail.mcgill.ca>
* Copyright (c) 2012 Stephan Linz <linz@li-pro.net>
*
- * Licensed under the GPL-2 or later.
+ * SPDX-License-Identifier: GPL-2.0+
*
* [0]: http://www.xilinx.com/support/documentation
*
diff --git a/include/spi_flash.h b/include/spi_flash.h
index 1ff5af4..b961213 100644
--- a/include/spi_flash.h
+++ b/include/spi_flash.h
@@ -4,12 +4,7 @@
* Copyright (C) 2008 Atmel Corporation
* Copyright (C) 2013 Jagannadha Sutradharudu Teki, Xilinx Inc.
*
- * See file CREDITS for list of people who contributed to this
- * project.
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * version 2 as published by the Free Software Foundation.
+ * SPDX-License-Identifier: GPL-2.0+
*/
#ifndef _SPI_FLASH_H_
--
1.8.3
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [U-Boot] [PATCH 2/2] spi: Add GPL-2.0+ SPDX-License-Identifier for missing ones
2013-10-10 17:26 [U-Boot] [PATCH 2/2] spi: Add GPL-2.0+ SPDX-License-Identifier for missing ones Jagannadha Sutradharudu Teki
@ 2013-10-10 18:05 ` Tom Rini
0 siblings, 0 replies; 2+ messages in thread
From: Tom Rini @ 2013-10-10 18:05 UTC (permalink / raw)
To: u-boot
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
- -----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
On 10/10/2013 01:26 PM, Jagannadha Sutradharudu Teki wrote:
> Added GPL-2.0+ SPDX-License-Identifier for missed spi
> source files.
[snip]
> diff --git a/drivers/spi/bfin_spi6xx.c b/drivers/spi/bfin_spi6xx.c
[snip]
> diff --git a/drivers/spi/fdt_spi.c b/drivers/spi/fdt_spi.c
[snip]
> diff --git a/drivers/spi/sh_spi.c b/drivers/spi/sh_spi.c
[snip]
> diff --git a/drivers/spi/sh_spi.h b/drivers/spi/sh_spi.h
[snip]
> diff --git a/drivers/spi/tegra114_spi.c b/drivers/spi/tegra114_spi.c
[snip]
> diff --git a/drivers/spi/tegra20_slink.c b/drivers/spi/tegra20_slink.c
[snip]
> diff --git a/include/spi_flash.h b/include/spi_flash.h
[snip]
Each of the above files does not contain "or later" in the license
clause so is GPL-2.0 not GPL-2.0+
- - --
Tom
- -----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/
iQIcBAEBAgAGBQJSVuwuAAoJENk4IS6UOR1WFbYQAIpY+kysyrAwLYjtEIcYZa/2
FrVOHe3G0njk7Kneh8r1FjPgLhLE9Gib6yR9FWYQ58ZTQyU0QBqO2uvTeudqkLGv
w2IKxpCJ6KW9ahffiOmGw+4p1NCAnhxhgn7t0EfOPFjyzX03bQR9yJUuAFORP7Xm
kWX6jbd49RJX2VDVbaBcQCgLQDwObXtGXLi3HaTm52AIRk/vx7xhf9x13GPFz725
7KH/vdgRWdejd5Y0PXq2NE/Xi4ZF3Z5sIUVYOSo9WanKMaLncMCezZtI0zyYPjQn
ExzIUHoMIg/zp5fydNL4GRFsiYxxRXfW8zqs1YHG3lxaQb/qxED+53E7vCD3Ag/7
/o1yHGbQSqP6rcZz9sc7GkHj8gE6szGbnzcHAHyj8svmW8ETN30VgXjRaaa+J0AE
WAV9dlcDVsdVbrRhRHTDe73DPzp3e4TUYX82tVKGN/Y0wVqvDWIXMSHv0xuiclso
QG0HIiV6hlYRA3dP5yys8aTm7l82nOnPXoHjZ+JZmbtUZWM+eYWXKu3CR7lLuGgs
Ch3jk2YrVj5gm+oR92HuQVtqLwCrKnEsNL45la2dXts4X/IrhiYQ9M3fW7k7fz3H
eN/Xc8XZCdL7M+J8qmRJ20bwiTlqwbzBeMgPMc7lRgJMssTiFk3ZqDPzoqhA/gqi
AFLMghizn/cGpp0tiU61
=xj6k
- -----END PGP SIGNATURE-----
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/
iQIcBAEBAgAGBQJSVuxaAAoJENk4IS6UOR1Wf8kQAK7K4szMBEaagFWO5ATmjAbO
oiEtAkuvbYlG5+6Oc7Fm2EvWXvnfevelPYD4rK4oaGpwJwqnKZla7qwwfqsU3Rkt
irEZSy4BC5SJiTY+frGX+FIFtU5/eGb60WZNCiqKkaM8QVS9i9VKkyRCMW4Q1r94
9hkRw+S56H8NjDthmJWU/jr85L0x8p+bs91bnYjJ1t2zPmBy+fExbzBzU9oE5H83
+aQ5xAAJVv3lem34ngdtN4rN6R9Pb41nhLR8Je4m+IMQjrXiYmSqZ1dBmB9MaaKn
uMg4fUXkeGb+JMrLvUZW1vDubW606hcjCXtfjJ+7r5du08NWLPAGGFsVTxsbmYzh
NmYXVow7PwW6SIZV5qQ6gYIygro/R8rb10+IsaZNubepQ3jFOPfe68gsB3JAvouB
q/sHxwK0GitlhAhUyULd2JQR2YUOItNRhLrWISbGMoQG9i+HWjUKFCdX+A0HsCTq
69LaEcoE8TQ1mc6LOLeBThp5dnoyxf+QenGgHh/333/5E0UqY+VeY/F5IbJA/k1C
93GmrcKWB04+AVOld8lmwg6EhNXEW3JQPDqIdxEYJhoarP7MtCRfqmZaC5yBsllX
pyM4T3/mflPhGdwsVKM2X7dsNO31jzn+UEKwNJEmjl6S5Ms8Z5T2fWejjtWptIo+
rZ61plVvJOCdphhyi++z
=PERi
-----END PGP SIGNATURE-----
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-10-10 18:05 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-10 17:26 [U-Boot] [PATCH 2/2] spi: Add GPL-2.0+ SPDX-License-Identifier for missing ones Jagannadha Sutradharudu Teki
2013-10-10 18:05 ` Tom Rini
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox