* [U-Boot] [PATCH] exynos: sandbox: ti: Add SPDX license identifiers and notes
@ 2015-04-13 17:19 Simon Glass
2015-04-13 20:12 ` Nishanth Menon
2015-04-22 20:13 ` [U-Boot] " Simon Glass
0 siblings, 2 replies; 4+ messages in thread
From: Simon Glass @ 2015-04-13 17:19 UTC (permalink / raw)
To: u-boot
For some files I neglected to add a license. Rectify this:
arch/arm/dts/exynos4210-pinctrl-uboot.dtsi
arch/arm/dts/exynos4x12-pinctrl-uboot.dtsi
arch/arm/dts/exynos5250-pinctrl-uboot.dtsi
arch/arm/dts/exynos54xx-pinctrl-uboot.dtsi
arch/arm/dts/s5pc100-pinctrl.dtsi
arch/arm/dts/s5pc110-pinctrl.dtsi
This file came from Linux and has no license information there, so add a
comment to that effect:
arch/sandbox/include/asm/bitops.h
This file also came from Linux - presumably someone from TI could add the
license:
include/dt-bindings/pinctrl/omap.h
Signed-off-by: Simon Glass <sjg@chromium.org>
Reported-by: Ingrid Viitanen <ingrid.viitanen@nokia.com>
---
arch/arm/dts/exynos4210-pinctrl-uboot.dtsi | 2 ++
arch/arm/dts/exynos4x12-pinctrl-uboot.dtsi | 2 ++
arch/arm/dts/exynos5250-pinctrl-uboot.dtsi | 2 ++
arch/arm/dts/exynos54xx-pinctrl-uboot.dtsi | 2 ++
arch/arm/dts/s5pc100-pinctrl.dtsi | 2 ++
arch/arm/dts/s5pc110-pinctrl.dtsi | 2 ++
arch/sandbox/include/asm/bitops.h | 2 ++
7 files changed, 14 insertions(+)
diff --git a/arch/arm/dts/exynos4210-pinctrl-uboot.dtsi b/arch/arm/dts/exynos4210-pinctrl-uboot.dtsi
index f9b61ba..0ff41d0 100644
--- a/arch/arm/dts/exynos4210-pinctrl-uboot.dtsi
+++ b/arch/arm/dts/exynos4210-pinctrl-uboot.dtsi
@@ -2,6 +2,8 @@
* U-Boot additions to enable a generic Exynos GPIO driver
*
* Copyright (c) 2014 Google, Inc
+ *
+ * SPDX-License-Identifier: GPL-2.0+
*/
/{
diff --git a/arch/arm/dts/exynos4x12-pinctrl-uboot.dtsi b/arch/arm/dts/exynos4x12-pinctrl-uboot.dtsi
index c41d07b..8e5a6c6 100644
--- a/arch/arm/dts/exynos4x12-pinctrl-uboot.dtsi
+++ b/arch/arm/dts/exynos4x12-pinctrl-uboot.dtsi
@@ -2,6 +2,8 @@
* U-Boot additions to enable a generic Exynos GPIO driver
*
* Copyright (c) 2014 Google, Inc
+ *
+ * SPDX-License-Identifier: GPL-2.0+
*/
/{
diff --git a/arch/arm/dts/exynos5250-pinctrl-uboot.dtsi b/arch/arm/dts/exynos5250-pinctrl-uboot.dtsi
index 7edb0ca..068c5f6 100644
--- a/arch/arm/dts/exynos5250-pinctrl-uboot.dtsi
+++ b/arch/arm/dts/exynos5250-pinctrl-uboot.dtsi
@@ -2,6 +2,8 @@
* U-Boot additions to enable a generic Exynos GPIO driver
*
* Copyright (c) 2014 Google, Inc
+ *
+ * SPDX-License-Identifier: GPL-2.0+
*/
/{
diff --git a/arch/arm/dts/exynos54xx-pinctrl-uboot.dtsi b/arch/arm/dts/exynos54xx-pinctrl-uboot.dtsi
index 5a86211..635a1b0 100644
--- a/arch/arm/dts/exynos54xx-pinctrl-uboot.dtsi
+++ b/arch/arm/dts/exynos54xx-pinctrl-uboot.dtsi
@@ -2,6 +2,8 @@
* U-Boot additions to enable a generic Exynos GPIO driver
*
* Copyright (c) 2014 Google, Inc
+ *
+ * SPDX-License-Identifier: GPL-2.0+
*/
/{
diff --git a/arch/arm/dts/s5pc100-pinctrl.dtsi b/arch/arm/dts/s5pc100-pinctrl.dtsi
index bd9f97c..9753869 100644
--- a/arch/arm/dts/s5pc100-pinctrl.dtsi
+++ b/arch/arm/dts/s5pc100-pinctrl.dtsi
@@ -2,6 +2,8 @@
* U-Boot additions to enable a generic Exynos GPIO driver
*
* Copyright (c) 2014 Google, Inc
+ *
+ * SPDX-License-Identifier: GPL-2.0+
*/
/ {
diff --git a/arch/arm/dts/s5pc110-pinctrl.dtsi b/arch/arm/dts/s5pc110-pinctrl.dtsi
index d21b6ab..2e9d552 100644
--- a/arch/arm/dts/s5pc110-pinctrl.dtsi
+++ b/arch/arm/dts/s5pc110-pinctrl.dtsi
@@ -2,6 +2,8 @@
* U-Boot additions to enable a generic Exynos GPIO driver
*
* Copyright (c) 2014 Google, Inc
+ *
+ * SPDX-License-Identifier: GPL-2.0+
*/
/ {
diff --git a/arch/sandbox/include/asm/bitops.h b/arch/sandbox/include/asm/bitops.h
index e807c4e..f1a7aee 100644
--- a/arch/sandbox/include/asm/bitops.h
+++ b/arch/sandbox/include/asm/bitops.h
@@ -1,6 +1,8 @@
/*
* Copyright (c) 2011 The Chromium OS Authors.
*
+ * Modified from Linux arch/arm/include/asm/bitops.h
+ *
* Copyright 1995, Russell King.
* Various bits and pieces copyrights include:
* Linus Torvalds (test_bit).
--
2.2.0.rc0.207.ga3a616c
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH] exynos: sandbox: ti: Add SPDX license identifiers and notes
2015-04-13 17:19 [U-Boot] [PATCH] exynos: sandbox: ti: Add SPDX license identifiers and notes Simon Glass
@ 2015-04-13 20:12 ` Nishanth Menon
[not found] ` <CAPnjgZ1U8Mpqb01kJVFwX6ZAnrD_PMuxZn=OxCdALwegQHd_7A@mail.gmail.com>
2015-04-22 20:13 ` [U-Boot] " Simon Glass
1 sibling, 1 reply; 4+ messages in thread
From: Nishanth Menon @ 2015-04-13 20:12 UTC (permalink / raw)
To: u-boot
On 04/13/2015 12:19 PM, Simon Glass wrote:
> For some files I neglected to add a license. Rectify this:
>
> arch/arm/dts/exynos4210-pinctrl-uboot.dtsi
> arch/arm/dts/exynos4x12-pinctrl-uboot.dtsi
> arch/arm/dts/exynos5250-pinctrl-uboot.dtsi
> arch/arm/dts/exynos54xx-pinctrl-uboot.dtsi
> arch/arm/dts/s5pc100-pinctrl.dtsi
> arch/arm/dts/s5pc110-pinctrl.dtsi
>
> This file came from Linux and has no license information there, so add a
> comment to that effect:
>
> arch/sandbox/include/asm/bitops.h
>
> This file also came from Linux - presumably someone from TI could add the
> license:
>
> include/dt-bindings/pinctrl/omap.h
>
Original code in kernel was added by Florian Vaussard
<florian.vaussard@epfl.ch> -> CCying him and Tony if they have any
objections.
--
Regards,
Nishanth Menon
^ permalink raw reply [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH] exynos: sandbox: ti: Add SPDX license identifiers and notes
2015-04-13 17:19 [U-Boot] [PATCH] exynos: sandbox: ti: Add SPDX license identifiers and notes Simon Glass
2015-04-13 20:12 ` Nishanth Menon
@ 2015-04-22 20:13 ` Simon Glass
1 sibling, 0 replies; 4+ messages in thread
From: Simon Glass @ 2015-04-22 20:13 UTC (permalink / raw)
To: u-boot
On 13 April 2015 at 11:19, Simon Glass <sjg@chromium.org> wrote:
> For some files I neglected to add a license. Rectify this:
>
> arch/arm/dts/exynos4210-pinctrl-uboot.dtsi
> arch/arm/dts/exynos4x12-pinctrl-uboot.dtsi
> arch/arm/dts/exynos5250-pinctrl-uboot.dtsi
> arch/arm/dts/exynos54xx-pinctrl-uboot.dtsi
> arch/arm/dts/s5pc100-pinctrl.dtsi
> arch/arm/dts/s5pc110-pinctrl.dtsi
>
> This file came from Linux and has no license information there, so add a
> comment to that effect:
>
> arch/sandbox/include/asm/bitops.h
>
> This file also came from Linux - presumably someone from TI could add the
> license:
>
> include/dt-bindings/pinctrl/omap.h
>
> Signed-off-by: Simon Glass <sjg@chromium.org>
> Reported-by: Ingrid Viitanen <ingrid.viitanen@nokia.com>
> ---
>
> arch/arm/dts/exynos4210-pinctrl-uboot.dtsi | 2 ++
> arch/arm/dts/exynos4x12-pinctrl-uboot.dtsi | 2 ++
> arch/arm/dts/exynos5250-pinctrl-uboot.dtsi | 2 ++
> arch/arm/dts/exynos54xx-pinctrl-uboot.dtsi | 2 ++
> arch/arm/dts/s5pc100-pinctrl.dtsi | 2 ++
> arch/arm/dts/s5pc110-pinctrl.dtsi | 2 ++
> arch/sandbox/include/asm/bitops.h | 2 ++
> 7 files changed, 14 insertions(+)
Applied to u-boot-dm.
^ permalink raw reply [flat|nested] 4+ messages in thread
* [U-Boot] Fwd: [PATCH] exynos: sandbox: ti: Add SPDX license identifiers and notes
[not found] ` <20150422202130.GH21761@atomide.com>
@ 2015-06-30 21:59 ` Simon Glass
0 siblings, 0 replies; 4+ messages in thread
From: Simon Glass @ 2015-06-30 21:59 UTC (permalink / raw)
To: u-boot
+U-Boot ML
On 22 April 2015 at 14:21, Tony Lindgren <tony@atomide.com> wrote:
> * Simon Glass <sjg@chromium.org> [150422 13:16]:
>> Hi,
>>
>> Please see below.
>>
>> Can you please advise what license should be used for this kernel file?
>>
>> include/dt-bindings/pinctrl/omap.h
>
> It's based on arch/arm/mach-omap2/mux.h which is GPL v2.
>
> Regards,
>
> Tony
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-06-30 21:59 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-13 17:19 [U-Boot] [PATCH] exynos: sandbox: ti: Add SPDX license identifiers and notes Simon Glass
2015-04-13 20:12 ` Nishanth Menon
[not found] ` <CAPnjgZ1U8Mpqb01kJVFwX6ZAnrD_PMuxZn=OxCdALwegQHd_7A@mail.gmail.com>
[not found] ` <20150422202130.GH21761@atomide.com>
2015-06-30 21:59 ` [U-Boot] Fwd: " Simon Glass
2015-04-22 20:13 ` [U-Boot] " Simon Glass
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox