All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] j1939: add SPDX-License-Identifier
@ 2018-01-24 11:18 Marc Kleine-Budde
  2018-01-24 20:15 ` Kurt Van Dijck
  2018-01-29 10:37 ` Pieter Beyens
  0 siblings, 2 replies; 4+ messages in thread
From: Marc Kleine-Budde @ 2018-01-24 11:18 UTC (permalink / raw)
  To: linux-can, dev.kurt; +Cc: kernel, Marc Kleine-Budde

Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
---
Hello,

I added a bnush of SPDX-License-Identifier to the files introduced in
the j1939 patches.

I marked include/uapi/linux/can/j1939.h as "GPL-2.0 WITH
Linux-syscall-note" all other files as GPL-2.0.

I'd like to have the Acked-by and or Signed-of by by Kurt and
Pieter Beyens.

regards,
Marc

 include/uapi/linux/can/j1939.h | 1 +
 net/can/j1939/Kconfig          | 1 +
 net/can/j1939/Makefile         | 2 ++
 net/can/j1939/address-claim.c  | 1 +
 net/can/j1939/bus.c            | 1 +
 net/can/j1939/j1939-priv.h     | 1 +
 net/can/j1939/main.c           | 1 +
 net/can/j1939/socket.c         | 1 +
 net/can/j1939/transport.c      | 1 +
 9 files changed, 10 insertions(+)

diff --git a/include/uapi/linux/can/j1939.h b/include/uapi/linux/can/j1939.h
index cd4661a97906..306380656c03 100644
--- a/include/uapi/linux/can/j1939.h
+++ b/include/uapi/linux/can/j1939.h
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
 /*
  * j1939.h
  *
diff --git a/net/can/j1939/Kconfig b/net/can/j1939/Kconfig
index 74d2a863bc16..ff0b08a8af3f 100644
--- a/net/can/j1939/Kconfig
+++ b/net/can/j1939/Kconfig
@@ -1,3 +1,4 @@
+# SPDX-License-Identifier: GPL-2.0
 #
 # SAE J1939 network layer core configuration
 #
diff --git a/net/can/j1939/Makefile b/net/can/j1939/Makefile
index dda03af263f8..46e6c6ed221d 100644
--- a/net/can/j1939/Makefile
+++ b/net/can/j1939/Makefile
@@ -1,3 +1,5 @@
+# SPDX-License-Identifier: GPL-2.0
+
 cppflags-$(CONFIG_CAN_J1939_DEBUG) += -DDEBUG
 
 obj-$(CONFIG_CAN_J1939) += can-j1939.o
diff --git a/net/can/j1939/address-claim.c b/net/can/j1939/address-claim.c
index ab538e1c4906..19e0bcf3e91f 100644
--- a/net/can/j1939/address-claim.c
+++ b/net/can/j1939/address-claim.c
@@ -1,3 +1,4 @@
+// SPDX-License-Identifier: GPL-2.0
 /*
  * Copyright (c) 2010-2011 EIA Electronics
  *
diff --git a/net/can/j1939/bus.c b/net/can/j1939/bus.c
index fb6b701562c8..2d963cbdb0c7 100644
--- a/net/can/j1939/bus.c
+++ b/net/can/j1939/bus.c
@@ -1,3 +1,4 @@
+// SPDX-License-Identifier: GPL-2.0
 /*
  * Copyright (c) 2010-2011 EIA Electronics
  *
diff --git a/net/can/j1939/j1939-priv.h b/net/can/j1939/j1939-priv.h
index da37056ba5e5..e78420a99607 100644
--- a/net/can/j1939/j1939-priv.h
+++ b/net/can/j1939/j1939-priv.h
@@ -1,3 +1,4 @@
+// SPDX-License-Identifier: GPL-2.0
 /*
  * j1939-priv.h
  *
diff --git a/net/can/j1939/main.c b/net/can/j1939/main.c
index 86cdcc18338a..4693c263ccd6 100644
--- a/net/can/j1939/main.c
+++ b/net/can/j1939/main.c
@@ -1,3 +1,4 @@
+// SPDX-License-Identifier: GPL-2.0
 /*
  * Copyright (c) 2010-2011 EIA Electronics
  *
diff --git a/net/can/j1939/socket.c b/net/can/j1939/socket.c
index ae5357510623..506ef86a9f7f 100644
--- a/net/can/j1939/socket.c
+++ b/net/can/j1939/socket.c
@@ -1,3 +1,4 @@
+// SPDX-License-Identifier: GPL-2.0
 /*
  * Copyright (c) 2010-2011 EIA Electronics
  *
diff --git a/net/can/j1939/transport.c b/net/can/j1939/transport.c
index 6001901c8db3..646efce90668 100644
--- a/net/can/j1939/transport.c
+++ b/net/can/j1939/transport.c
@@ -1,3 +1,4 @@
+// SPDX-License-Identifier: GPL-2.0
 /*
  * Copyright (c) 2010-2011 EIA Electronics
  *
-- 
2.15.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] j1939: add SPDX-License-Identifier
  2018-01-24 11:18 [PATCH] j1939: add SPDX-License-Identifier Marc Kleine-Budde
@ 2018-01-24 20:15 ` Kurt Van Dijck
  2018-01-29 10:37 ` Pieter Beyens
  1 sibling, 0 replies; 4+ messages in thread
From: Kurt Van Dijck @ 2018-01-24 20:15 UTC (permalink / raw)
  To: Marc Kleine-Budde; +Cc: linux-can, kernel

> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>

Acked-by: Kurt Van Dijck <dev.kurt@vandijck-laurijssen.be>

> ---
> Hello,
> 
> I added a bnush of SPDX-License-Identifier to the files introduced in
> the j1939 patches.
> 
> I marked include/uapi/linux/can/j1939.h as "GPL-2.0 WITH
> Linux-syscall-note" all other files as GPL-2.0.
> 
> I'd like to have the Acked-by and or Signed-of by by Kurt and
> Pieter Beyens.
> 
> regards,
> Marc
> 
>  include/uapi/linux/can/j1939.h | 1 +
>  net/can/j1939/Kconfig          | 1 +
>  net/can/j1939/Makefile         | 2 ++
>  net/can/j1939/address-claim.c  | 1 +
>  net/can/j1939/bus.c            | 1 +
>  net/can/j1939/j1939-priv.h     | 1 +
>  net/can/j1939/main.c           | 1 +
>  net/can/j1939/socket.c         | 1 +
>  net/can/j1939/transport.c      | 1 +
>  9 files changed, 10 insertions(+)
> 
> diff --git a/include/uapi/linux/can/j1939.h b/include/uapi/linux/can/j1939.h
> index cd4661a97906..306380656c03 100644
> --- a/include/uapi/linux/can/j1939.h
> +++ b/include/uapi/linux/can/j1939.h
> @@ -1,3 +1,4 @@
> +/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
>  /*
>   * j1939.h
>   *
> diff --git a/net/can/j1939/Kconfig b/net/can/j1939/Kconfig
> index 74d2a863bc16..ff0b08a8af3f 100644
> --- a/net/can/j1939/Kconfig
> +++ b/net/can/j1939/Kconfig
> @@ -1,3 +1,4 @@
> +# SPDX-License-Identifier: GPL-2.0
>  #
>  # SAE J1939 network layer core configuration
>  #
> diff --git a/net/can/j1939/Makefile b/net/can/j1939/Makefile
> index dda03af263f8..46e6c6ed221d 100644
> --- a/net/can/j1939/Makefile
> +++ b/net/can/j1939/Makefile
> @@ -1,3 +1,5 @@
> +# SPDX-License-Identifier: GPL-2.0
> +
>  cppflags-$(CONFIG_CAN_J1939_DEBUG) += -DDEBUG
>  
>  obj-$(CONFIG_CAN_J1939) += can-j1939.o
> diff --git a/net/can/j1939/address-claim.c b/net/can/j1939/address-claim.c
> index ab538e1c4906..19e0bcf3e91f 100644
> --- a/net/can/j1939/address-claim.c
> +++ b/net/can/j1939/address-claim.c
> @@ -1,3 +1,4 @@
> +// SPDX-License-Identifier: GPL-2.0
>  /*
>   * Copyright (c) 2010-2011 EIA Electronics
>   *
> diff --git a/net/can/j1939/bus.c b/net/can/j1939/bus.c
> index fb6b701562c8..2d963cbdb0c7 100644
> --- a/net/can/j1939/bus.c
> +++ b/net/can/j1939/bus.c
> @@ -1,3 +1,4 @@
> +// SPDX-License-Identifier: GPL-2.0
>  /*
>   * Copyright (c) 2010-2011 EIA Electronics
>   *
> diff --git a/net/can/j1939/j1939-priv.h b/net/can/j1939/j1939-priv.h
> index da37056ba5e5..e78420a99607 100644
> --- a/net/can/j1939/j1939-priv.h
> +++ b/net/can/j1939/j1939-priv.h
> @@ -1,3 +1,4 @@
> +// SPDX-License-Identifier: GPL-2.0
>  /*
>   * j1939-priv.h
>   *
> diff --git a/net/can/j1939/main.c b/net/can/j1939/main.c
> index 86cdcc18338a..4693c263ccd6 100644
> --- a/net/can/j1939/main.c
> +++ b/net/can/j1939/main.c
> @@ -1,3 +1,4 @@
> +// SPDX-License-Identifier: GPL-2.0
>  /*
>   * Copyright (c) 2010-2011 EIA Electronics
>   *
> diff --git a/net/can/j1939/socket.c b/net/can/j1939/socket.c
> index ae5357510623..506ef86a9f7f 100644
> --- a/net/can/j1939/socket.c
> +++ b/net/can/j1939/socket.c
> @@ -1,3 +1,4 @@
> +// SPDX-License-Identifier: GPL-2.0
>  /*
>   * Copyright (c) 2010-2011 EIA Electronics
>   *
> diff --git a/net/can/j1939/transport.c b/net/can/j1939/transport.c
> index 6001901c8db3..646efce90668 100644
> --- a/net/can/j1939/transport.c
> +++ b/net/can/j1939/transport.c
> @@ -1,3 +1,4 @@
> +// SPDX-License-Identifier: GPL-2.0
>  /*
>   * Copyright (c) 2010-2011 EIA Electronics
>   *
> -- 
> 2.15.1
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-can" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] j1939: add SPDX-License-Identifier
  2018-01-24 11:18 [PATCH] j1939: add SPDX-License-Identifier Marc Kleine-Budde
  2018-01-24 20:15 ` Kurt Van Dijck
@ 2018-01-29 10:37 ` Pieter Beyens
  2018-01-29 10:43   ` Marc Kleine-Budde
  1 sibling, 1 reply; 4+ messages in thread
From: Pieter Beyens @ 2018-01-29 10:37 UTC (permalink / raw)
  To: Marc Kleine-Budde; +Cc: linux-can, dev.kurt, kernel

Acked-by: Pieter Beyens <pieter.beyens@gmail.com>

On Wed, Jan 24, 2018 at 12:18 PM, Marc Kleine-Budde <mkl@pengutronix.de> wrote:
> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
> ---
> Hello,
>
> I added a bnush of SPDX-License-Identifier to the files introduced in
> the j1939 patches.
>
> I marked include/uapi/linux/can/j1939.h as "GPL-2.0 WITH
> Linux-syscall-note" all other files as GPL-2.0.
>
> I'd like to have the Acked-by and or Signed-of by by Kurt and
> Pieter Beyens.
>
> regards,
> Marc
>
>  include/uapi/linux/can/j1939.h | 1 +
>  net/can/j1939/Kconfig          | 1 +
>  net/can/j1939/Makefile         | 2 ++
>  net/can/j1939/address-claim.c  | 1 +
>  net/can/j1939/bus.c            | 1 +
>  net/can/j1939/j1939-priv.h     | 1 +
>  net/can/j1939/main.c           | 1 +
>  net/can/j1939/socket.c         | 1 +
>  net/can/j1939/transport.c      | 1 +
>  9 files changed, 10 insertions(+)
>
> diff --git a/include/uapi/linux/can/j1939.h b/include/uapi/linux/can/j1939.h
> index cd4661a97906..306380656c03 100644
> --- a/include/uapi/linux/can/j1939.h
> +++ b/include/uapi/linux/can/j1939.h
> @@ -1,3 +1,4 @@
> +/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
>  /*
>   * j1939.h
>   *
> diff --git a/net/can/j1939/Kconfig b/net/can/j1939/Kconfig
> index 74d2a863bc16..ff0b08a8af3f 100644
> --- a/net/can/j1939/Kconfig
> +++ b/net/can/j1939/Kconfig
> @@ -1,3 +1,4 @@
> +# SPDX-License-Identifier: GPL-2.0
>  #
>  # SAE J1939 network layer core configuration
>  #
> diff --git a/net/can/j1939/Makefile b/net/can/j1939/Makefile
> index dda03af263f8..46e6c6ed221d 100644
> --- a/net/can/j1939/Makefile
> +++ b/net/can/j1939/Makefile
> @@ -1,3 +1,5 @@
> +# SPDX-License-Identifier: GPL-2.0
> +
>  cppflags-$(CONFIG_CAN_J1939_DEBUG) += -DDEBUG
>
>  obj-$(CONFIG_CAN_J1939) += can-j1939.o
> diff --git a/net/can/j1939/address-claim.c b/net/can/j1939/address-claim.c
> index ab538e1c4906..19e0bcf3e91f 100644
> --- a/net/can/j1939/address-claim.c
> +++ b/net/can/j1939/address-claim.c
> @@ -1,3 +1,4 @@
> +// SPDX-License-Identifier: GPL-2.0
>  /*
>   * Copyright (c) 2010-2011 EIA Electronics
>   *
> diff --git a/net/can/j1939/bus.c b/net/can/j1939/bus.c
> index fb6b701562c8..2d963cbdb0c7 100644
> --- a/net/can/j1939/bus.c
> +++ b/net/can/j1939/bus.c
> @@ -1,3 +1,4 @@
> +// SPDX-License-Identifier: GPL-2.0
>  /*
>   * Copyright (c) 2010-2011 EIA Electronics
>   *
> diff --git a/net/can/j1939/j1939-priv.h b/net/can/j1939/j1939-priv.h
> index da37056ba5e5..e78420a99607 100644
> --- a/net/can/j1939/j1939-priv.h
> +++ b/net/can/j1939/j1939-priv.h
> @@ -1,3 +1,4 @@
> +// SPDX-License-Identifier: GPL-2.0
>  /*
>   * j1939-priv.h
>   *
> diff --git a/net/can/j1939/main.c b/net/can/j1939/main.c
> index 86cdcc18338a..4693c263ccd6 100644
> --- a/net/can/j1939/main.c
> +++ b/net/can/j1939/main.c
> @@ -1,3 +1,4 @@
> +// SPDX-License-Identifier: GPL-2.0
>  /*
>   * Copyright (c) 2010-2011 EIA Electronics
>   *
> diff --git a/net/can/j1939/socket.c b/net/can/j1939/socket.c
> index ae5357510623..506ef86a9f7f 100644
> --- a/net/can/j1939/socket.c
> +++ b/net/can/j1939/socket.c
> @@ -1,3 +1,4 @@
> +// SPDX-License-Identifier: GPL-2.0
>  /*
>   * Copyright (c) 2010-2011 EIA Electronics
>   *
> diff --git a/net/can/j1939/transport.c b/net/can/j1939/transport.c
> index 6001901c8db3..646efce90668 100644
> --- a/net/can/j1939/transport.c
> +++ b/net/can/j1939/transport.c
> @@ -1,3 +1,4 @@
> +// SPDX-License-Identifier: GPL-2.0
>  /*
>   * Copyright (c) 2010-2011 EIA Electronics
>   *
> --
> 2.15.1
>
>
>



-- 
A designer knows he has achieved perfection not when there is nothing
left to add, but when there is nothing left to take away.
- Antoine de Saint-Exup'ery

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] j1939: add SPDX-License-Identifier
  2018-01-29 10:37 ` Pieter Beyens
@ 2018-01-29 10:43   ` Marc Kleine-Budde
  0 siblings, 0 replies; 4+ messages in thread
From: Marc Kleine-Budde @ 2018-01-29 10:43 UTC (permalink / raw)
  To: Pieter Beyens; +Cc: linux-can, dev.kurt, kernel


[-- Attachment #1.1: Type: text/plain, Size: 392 bytes --]

On 01/29/2018 11:37 AM, Pieter Beyens wrote:
> Acked-by: Pieter Beyens <pieter.beyens@gmail.com>

Tnx.

Marc

-- 
Pengutronix e.K.                  | Marc Kleine-Budde           |
Industrial Linux Solutions        | Phone: +49-231-2826-924     |
Vertretung West/Dortmund          | Fax:   +49-5121-206917-5555 |
Amtsgericht Hildesheim, HRA 2686  | http://www.pengutronix.de   |


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-01-29 10:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-01-24 11:18 [PATCH] j1939: add SPDX-License-Identifier Marc Kleine-Budde
2018-01-24 20:15 ` Kurt Van Dijck
2018-01-29 10:37 ` Pieter Beyens
2018-01-29 10:43   ` Marc Kleine-Budde

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.