mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Thomas Gleixner <tglx@linutronix.de>
To: LKML <linux-kernel@vger.kernel.org>
Cc: Ingo Molnar <mingo@kernel.org>,
	Marc Zyngier <marc.zyngier@arm.com>,
	Kate Stewart <kstewart@linuxfoundation.org>,
	Philippe Ombredanne <pombredanne@nexb.com>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Subject: [patch 4/4] genirq: Add missing SPDX identifiers
Date: Wed, 14 Mar 2018 22:15:19 +0100	[thread overview]
Message-ID: <20180314212030.668321222@linutronix.de> (raw)
In-Reply-To: <20180314211515.429128440@linutronix.de>

[-- Attachment #1: genirq--Add-missing-SPDX-identifiers.patch --]
[-- Type: text/plain, Size: 2751 bytes --]

These files do not contain a license reference and were not updated in the
initial SPDX conversion because the license was deduced by the scanners via
EXPORT_SYMBOL_GPL as GPL2.0 only.

Add the missing GPL-2.0 identifiers.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
---
 kernel/irq/chip.c         |    1 +
 kernel/irq/devres.c       |    1 +
 kernel/irq/dummychip.c    |    1 +
 kernel/irq/generic-chip.c |    1 +
 kernel/irq/handle.c       |    1 +
 kernel/irq/ipi.c          |    1 +
 kernel/irq/irqdesc.c      |    1 +
 kernel/irq/irqdomain.c    |    2 ++
 kernel/irq/manage.c       |    1 +
 kernel/irq/pm.c           |    1 +
 10 files changed, 11 insertions(+)

--- a/kernel/irq/chip.c
+++ b/kernel/irq/chip.c
@@ -1,3 +1,4 @@
+// SPDX-License-Identifier: GPL-2.0
 /*
  * Copyright (C) 1992, 1998-2006 Linus Torvalds, Ingo Molnar
  * Copyright (C) 2005-2006, Thomas Gleixner, Russell King
--- a/kernel/irq/devres.c
+++ b/kernel/irq/devres.c
@@ -1,3 +1,4 @@
+// SPDX-License-Identifier: GPL-2.0
 #include <linux/module.h>
 #include <linux/interrupt.h>
 #include <linux/device.h>
--- a/kernel/irq/dummychip.c
+++ b/kernel/irq/dummychip.c
@@ -1,3 +1,4 @@
+// SPDX-License-Identifier: GPL-2.0
 /*
  * Copyright (C) 1992, 1998-2006 Linus Torvalds, Ingo Molnar
  * Copyright (C) 2005-2006, Thomas Gleixner, Russell King
--- a/kernel/irq/generic-chip.c
+++ b/kernel/irq/generic-chip.c
@@ -1,3 +1,4 @@
+// SPDX-License-Identifier: GPL-2.0
 /*
  * Library implementing the most common irq chip callback functions
  *
--- a/kernel/irq/handle.c
+++ b/kernel/irq/handle.c
@@ -1,3 +1,4 @@
+// SPDX-License-Identifier: GPL-2.0
 /*
  * Copyright (C) 1992, 1998-2006 Linus Torvalds, Ingo Molnar
  * Copyright (C) 2005-2006, Thomas Gleixner, Russell King
--- a/kernel/irq/ipi.c
+++ b/kernel/irq/ipi.c
@@ -1,3 +1,4 @@
+// SPDX-License-Identifier: GPL-2.0
 /*
  * Copyright (C) 2015 Imagination Technologies Ltd
  * Author: Qais Yousef <qais.yousef@imgtec.com>
--- a/kernel/irq/irqdesc.c
+++ b/kernel/irq/irqdesc.c
@@ -1,3 +1,4 @@
+// SPDX-License-Identifier: GPL-2.0
 /*
  * Copyright (C) 1992, 1998-2006 Linus Torvalds, Ingo Molnar
  * Copyright (C) 2005-2006, Thomas Gleixner, Russell King
--- a/kernel/irq/irqdomain.c
+++ b/kernel/irq/irqdomain.c
@@ -1,3 +1,5 @@
+// SPDX-License-Identifier: GPL-2.0
+
 #define pr_fmt(fmt)  "irq: " fmt
 
 #include <linux/acpi.h>
--- a/kernel/irq/manage.c
+++ b/kernel/irq/manage.c
@@ -1,3 +1,4 @@
+// SPDX-License-Identifier: GPL-2.0
 /*
  * Copyright (C) 1992, 1998-2006 Linus Torvalds, Ingo Molnar
  * Copyright (C) 2005-2006 Thomas Gleixner
--- a/kernel/irq/pm.c
+++ b/kernel/irq/pm.c
@@ -1,3 +1,4 @@
+// SPDX-License-Identifier: GPL-2.0
 /*
  * Copyright (C) 2009 Rafael J. Wysocki <rjw@sisk.pl>, Novell Inc.
  *

  parent reply	other threads:[~2018-03-14 21:15 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-03-14 21:15 [patch 0/4] genirq: Clean up license information Thomas Gleixner
2018-03-14 21:15 ` [patch 1/4] genirq: Cleanup top of file comments Thomas Gleixner
2018-03-20 13:27   ` [tip:irq/core] " tip-bot for Thomas Gleixner
2018-03-14 21:15 ` [patch 2/4] genirq/matrix: Cleanup SPDX identifier Thomas Gleixner
2018-03-20 13:28   ` [tip:irq/core] " tip-bot for Thomas Gleixner
2018-03-14 21:15 ` [patch 3/4] genirq: Convert various GPL references to SPDX Thomas Gleixner
2018-03-15  7:44   ` Daniel Lezcano
2018-03-14 21:15 ` Thomas Gleixner [this message]
2018-03-20 13:28   ` [tip:irq/core] genirq: Add missing SPDX identifiers tip-bot for Thomas Gleixner
2018-03-20 13:29   ` [tip:irq/core] genirq: Remove license boilerplate/references tip-bot for Thomas Gleixner
2018-03-15 10:46 ` [patch 0/4] genirq: Clean up license information Marc Zyngier
2018-03-15 15:00 ` Joe Perches
2018-03-15 17:23   ` Greg Kroah-Hartman
2018-03-15 17:35     ` Joe Perches

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=20180314212030.668321222@linutronix.de \
    --to=tglx@linutronix.de \
    --cc=gregkh@linuxfoundation.org \
    --cc=kstewart@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=marc.zyngier@arm.com \
    --cc=mingo@kernel.org \
    --cc=pombredanne@nexb.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

all inboxes | Powered by JetHome®