Commit a7d7a392 authored by Thomas Gleixner's avatar Thomas Gleixner Committed by Greg Kroah-Hartman

treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 232

Based on 1 normalized pattern(s):

  licensed under the gnu general public license version 2 0 gplv2

extracted by the scancode license scanner the SPDX license identifier

  GPL-2.0-only

has been chosen to replace the boilerplate/reference in 3 file(s).
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Reviewed-by: default avatarArmijn Hemel <armijn@tjaldur.nl>
Reviewed-by: default avatarAlexios Zavras <alexios.zavras@intel.com>
Reviewed-by: default avatarAllison Randal <allison@lohutok.net>
Reviewed-by: default avatarEnrico Weigelt <info@metux.net>
Cc: linux-spdx@vger.kernel.org
Link: https://lkml.kernel.org/r/20190602204653.630925848@linutronix.deSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b6a3d1b7
// SPDX-License-Identifier: GPL-2.0-only
/* /*
* Minimal BPF assembler * Minimal BPF assembler
* *
...@@ -16,7 +17,6 @@ ...@@ -16,7 +17,6 @@
* pretty print a C-like construct. * pretty print a C-like construct.
* *
* Copyright 2013 Daniel Borkmann <borkmann@redhat.com> * Copyright 2013 Daniel Borkmann <borkmann@redhat.com>
* Licensed under the GNU General Public License, version 2.0 (GPLv2)
*/ */
#include <stdbool.h> #include <stdbool.h>
......
// SPDX-License-Identifier: GPL-2.0-only
/* /*
* Minimal BPF debugger * Minimal BPF debugger
* *
...@@ -28,7 +29,6 @@ ...@@ -28,7 +29,6 @@
* 7) > step [-<n>, +<n>] (performs single stepping through the BPF) * 7) > step [-<n>, +<n>] (performs single stepping through the BPF)
* *
* Copyright 2013 Daniel Borkmann <borkmann@redhat.com> * Copyright 2013 Daniel Borkmann <borkmann@redhat.com>
* Licensed under the GNU General Public License, version 2.0 (GPLv2)
*/ */
#include <stdio.h> #include <stdio.h>
......
// SPDX-License-Identifier: GPL-2.0-only
/* /*
* Minimal BPF JIT image disassembler * Minimal BPF JIT image disassembler
* *
...@@ -11,7 +12,6 @@ ...@@ -11,7 +12,6 @@
* 3) Run e.g. `bpf_jit_disasm -o` to read out the last JIT code * 3) Run e.g. `bpf_jit_disasm -o` to read out the last JIT code
* *
* Copyright 2013 Daniel Borkmann <borkmann@redhat.com> * Copyright 2013 Daniel Borkmann <borkmann@redhat.com>
* Licensed under the GNU General Public License, version 2.0 (GPLv2)
*/ */
#include <stdint.h> #include <stdint.h>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment