Linux IEEE 802.15.4 and 6LoWPAN development
 help / color / mirror / Atom feed
From: Stefan Schmidt <stefan@datenfreihafen.org>
To: linux-wpan@vger.kernel.org
Cc: alex.aring@gmail.com, miquel.raynal@bootlin.com,
	david.girault@qorvo.com,
	Stefan Schmidt <stefan@datenfreihafen.org>
Subject: [PATCH 7/9] src: switch files to SPDX header for license and copyright
Date: Sun, 24 Sep 2023 14:22:29 +0200	[thread overview]
Message-ID: <20230924122231.716878-8-stefan@datenfreihafen.org> (raw)
In-Reply-To: <20230924122231.716878-1-stefan@datenfreihafen.org>

Signed-off-by: Stefan Schmidt <stefan@datenfreihafen.org>
---
 src/.gitignore  | 4 ++++
 src/Makefile.am | 4 ++++
 src/event.c     | 4 ++++
 src/info.c      | 4 ++++
 src/interface.c | 4 ++++
 src/iwpan.c     | 3 +++
 src/iwpan.h     | 4 ++++
 src/mac.c       | 4 ++++
 src/nl_extras.h | 4 ++++
 src/phy.c       | 4 ++++
 src/scan.c      | 4 ++++
 src/sections.c  | 4 ++++
 12 files changed, 47 insertions(+)

diff --git a/src/.gitignore b/src/.gitignore
index a0a601d..efe0d9e 100644
--- a/src/.gitignore
+++ b/src/.gitignore
@@ -1,3 +1,7 @@
+# SPDX-FileCopyrightText: 2014 Alexander Aring <alex.aring@gmail.com>
+#
+# SPDX-License-Identifier: ISC
+
 .deps
 iwpan
 *.o
diff --git a/src/Makefile.am b/src/Makefile.am
index 7933daf..23b54db 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1,3 +1,7 @@
+# SPDX-FileCopyrightText: 2014 Alexander Aring <alex.aring@gmail.com>
+#
+# SPDX-License-Identifier: ISC
+
 bin_PROGRAMS = \
 	iwpan
 
diff --git a/src/event.c b/src/event.c
index 5ec597d..d47e778 100644
--- a/src/event.c
+++ b/src/event.c
@@ -1,3 +1,7 @@
+// SPDX-FileCopyrightText: 2023 David Girault <david.girault@qorvo.com>
+//
+// SPDX-License-Identifier: ISC
+
 #include <net/if.h>
 #include <errno.h>
 #include <stdint.h>
diff --git a/src/info.c b/src/info.c
index 8ed5e4f..8b7e98e 100644
--- a/src/info.c
+++ b/src/info.c
@@ -1,3 +1,7 @@
+// SPDX-FileCopyrightText: 2014 Alexander Aring <alex.aring@gmail.com>
+//
+// SPDX-License-Identifier: ISC
+
 #include <stdbool.h>
 #include <errno.h>
 #include <net/if.h>
diff --git a/src/interface.c b/src/interface.c
index 85d40a8..c078a25 100644
--- a/src/interface.c
+++ b/src/interface.c
@@ -1,3 +1,7 @@
+// SPDX-FileCopyrightText: 2014 Alexander Aring <alex.aring@gmail.com>
+//
+// SPDX-License-Identifier: ISC
+
 #include <net/if.h>
 #include <errno.h>
 #include <string.h>
diff --git a/src/iwpan.c b/src/iwpan.c
index 3cf5fe2..796d380 100644
--- a/src/iwpan.c
+++ b/src/iwpan.c
@@ -1,3 +1,6 @@
+// SPDX-FileCopyrightText: 2014 Alexander Aring <alex.aring@gmail.com>
+//
+// SPDX-License-Identifier: ISC
 
 #include <errno.h>
 #include <stdio.h>
diff --git a/src/iwpan.h b/src/iwpan.h
index 406940a..24cc926 100644
--- a/src/iwpan.h
+++ b/src/iwpan.h
@@ -1,3 +1,7 @@
+// SPDX-FileCopyrightText: 2014 Alexander Aring <alex.aring@gmail.com>
+//
+// SPDX-License-Identifier: ISC
+
 #ifndef __IWPAN_H
 #define __IWPAN_H
 
diff --git a/src/mac.c b/src/mac.c
index 286802c..79b3ab9 100644
--- a/src/mac.c
+++ b/src/mac.c
@@ -1,3 +1,7 @@
+// SPDX-FileCopyrightText: 2014 Alexander Aring <alex.aring@gmail.com>
+//
+// SPDX-License-Identifier: ISC
+
 #include <net/if.h>
 #include <errno.h>
 #include <string.h>
diff --git a/src/nl_extras.h b/src/nl_extras.h
index 37844f9..2a35f5d 100644
--- a/src/nl_extras.h
+++ b/src/nl_extras.h
@@ -1,3 +1,7 @@
+// SPDX-FileCopyrightText: 2014 Alexander Aring <alex.aring@gmail.com>
+//
+// SPDX-License-Identifier: ISC
+
 #ifndef __NL_EXTRAS_H
 #define __NL_EXTRAS_H
 
diff --git a/src/phy.c b/src/phy.c
index f97900f..f042588 100644
--- a/src/phy.c
+++ b/src/phy.c
@@ -1,3 +1,7 @@
+// SPDX-FileCopyrightText: 2014 Alexander Aring <alex.aring@gmail.com>
+//
+// SPDX-License-Identifier: ISC
+
 #include <net/if.h>
 #include <errno.h>
 #include <string.h>
diff --git a/src/scan.c b/src/scan.c
index e92702d..993e367 100644
--- a/src/scan.c
+++ b/src/scan.c
@@ -1,3 +1,7 @@
+// SPDX-FileCopyrightText: 2023 David Girault <david.girault@qorvo.com>
+//
+// SPDX-License-Identifier: ISC
+
 #include <errno.h>
 #include <inttypes.h>
 #include <net/if.h>
diff --git a/src/sections.c b/src/sections.c
index 40fdc94..8327fea 100644
--- a/src/sections.c
+++ b/src/sections.c
@@ -1,3 +1,7 @@
+// SPDX-FileCopyrightText: 2014 Alexander Aring <alex.aring@gmail.com>
+//
+// SPDX-License-Identifier: ISC
+
 #include "iwpan.h"
 
 SECTION(get);
-- 
2.41.0


  parent reply	other threads:[~2023-09-24 12:23 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-09-24 12:22 [PATCH 0/9] wpan-tools: switch to SPDX header for license and copyright Stefan Schmidt
2023-09-24 12:22 ` [PATCH 1/9] m4: remove empty folder which only holds a .gitignore file Stefan Schmidt
2023-09-24 12:22 ` [PATCH 2/9] license: clearly indicate license in file name and use new LICENSES folder Stefan Schmidt
2023-09-24 12:22 ` [PATCH 3/9] wpan-ping: switch files to SPDX header for license and copyright Stefan Schmidt
2023-09-24 12:22 ` [PATCH 4/9] wpan-hwsim: " Stefan Schmidt
2023-09-24 12:22 ` [PATCH 5/9] src/nl802154.h: switch file " Stefan Schmidt
2023-10-01 23:33   ` Alexander Aring
2023-10-02 13:29     ` Stefan Schmidt
2023-09-24 12:22 ` [PATCH 6/9] examples: switch files " Stefan Schmidt
2023-09-24 12:22 ` Stefan Schmidt [this message]
2023-09-24 12:22 ` [PATCH 8/9] misc: switch remaining " Stefan Schmidt
2023-09-24 12:22 ` [PATCH 9/9] workflow: add reuse job to check for REUSE compliance Stefan Schmidt
2023-09-25  7:22 ` [PATCH 0/9] wpan-tools: switch to SPDX header for license and copyright Miquel Raynal
2023-09-26  7:58   ` Stefan Schmidt
2023-10-01 23:37     ` Alexander Aring
2023-10-02 13:29       ` Stefan Schmidt

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230924122231.716878-8-stefan@datenfreihafen.org \
    --to=stefan@datenfreihafen.org \
    --cc=alex.aring@gmail.com \
    --cc=david.girault@qorvo.com \
    --cc=linux-wpan@vger.kernel.org \
    --cc=miquel.raynal@bootlin.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox