Re: [PATCH 22/30] overall/alpha tcg cpus|hppa: Fix Lesser GPL version number

2020-11-12 Thread Thomas Huth
On 23/10/2020 14.33, Chetan Pant wrote:
> There is no "version 2" of the "Lesser" General Public License.
> It is either "GPL version 2.0" or "Lesser GPL version 2.1".
> This patch replaces all occurrences of "Lesser GPL version 2" with
> "Lesser GPL version 2.1" in comment section.
> 
> Signed-off-by: Chetan Pant 
> ---
>  cpus-common.c | 2 +-
>  include/exec/cpu-all.h| 2 +-
>  include/exec/cpu-defs.h   | 2 +-
>  include/exec/cpu_ldst.h   | 2 +-
>  include/exec/cputlb.h | 2 +-
>  include/exec/exec-all.h   | 2 +-
>  include/exec/tb-hash.h| 2 +-
>  scripts/decodetree.py | 2 +-
>  target/alpha/cpu.h| 2 +-
>  target/alpha/fpu_helper.c | 2 +-
>  target/alpha/gdbstub.c| 2 +-
>  target/alpha/helper.c | 2 +-
>  target/alpha/int_helper.c | 2 +-
>  target/alpha/mem_helper.c | 2 +-
>  target/alpha/sys_helper.c | 2 +-
>  target/alpha/translate.c  | 2 +-
>  target/alpha/vax_helper.c | 2 +-
>  target/hppa/cpu.h | 2 +-
>  target/hppa/gdbstub.c | 2 +-
>  target/hppa/helper.c  | 2 +-
>  target/hppa/insns.decode  | 2 +-
>  target/hppa/int_helper.c  | 2 +-
>  target/hppa/machine.c | 2 +-
>  target/hppa/mem_helper.c  | 2 +-
>  target/hppa/op_helper.c   | 2 +-
>  target/hppa/translate.c   | 2 +-
>  26 files changed, 26 insertions(+), 26 deletions(-)
> 
> diff --git a/cpus-common.c b/cpus-common.c
> index 83475ef..6e73d3e 100644
> --- a/cpus-common.c
> +++ b/cpus-common.c
> @@ -6,7 +6,7 @@
>   * This library is free software; you can redistribute it and/or
>   * modify it under the terms of the GNU Lesser General Public
>   * License as published by the Free Software Foundation; either
> - * version 2 of the License, or (at your option) any later version.
> + * version 2.1 of the License, or (at your option) any later version.
>   *
>   * This library is distributed in the hope that it will be useful,
>   * but WITHOUT ANY WARRANTY; without even the implied warranty of
> diff --git a/include/exec/cpu-all.h b/include/exec/cpu-all.h
> index f6439c4..1c92ab6 100644
> --- a/include/exec/cpu-all.h
> +++ b/include/exec/cpu-all.h
> @@ -6,7 +6,7 @@
>   * This library is free software; you can redistribute it and/or
>   * modify it under the terms of the GNU Lesser General Public
>   * License as published by the Free Software Foundation; either
> - * version 2 of the License, or (at your option) any later version.
> + * version 2.1 of the License, or (at your option) any later version.
>   *
>   * This library is distributed in the hope that it will be useful,
>   * but WITHOUT ANY WARRANTY; without even the implied warranty of
> diff --git a/include/exec/cpu-defs.h b/include/exec/cpu-defs.h
> index 9185632..d1f5e3f 100644
> --- a/include/exec/cpu-defs.h
> +++ b/include/exec/cpu-defs.h
> @@ -6,7 +6,7 @@
>   * This library is free software; you can redistribute it and/or
>   * modify it under the terms of the GNU Lesser General Public
>   * License as published by the Free Software Foundation; either
> - * version 2 of the License, or (at your option) any later version.
> + * version 2.1 of the License, or (at your option) any later version.
>   *
>   * This library is distributed in the hope that it will be useful,
>   * but WITHOUT ANY WARRANTY; without even the implied warranty of
> diff --git a/include/exec/cpu_ldst.h b/include/exec/cpu_ldst.h
> index 30605ed..ef54cb7 100644
> --- a/include/exec/cpu_ldst.h
> +++ b/include/exec/cpu_ldst.h
> @@ -4,7 +4,7 @@
>   * This library is free software; you can redistribute it and/or
>   * modify it under the terms of the GNU Lesser General Public
>   * License as published by the Free Software Foundation; either
> - * version 2 of the License, or (at your option) any later version.
> + * version 2.1 of the License, or (at your option) any later version.
>   *
>   * This library is distributed in the hope that it will be useful,
>   * but WITHOUT ANY WARRANTY; without even the implied warranty of
> diff --git a/include/exec/cputlb.h b/include/exec/cputlb.h
> index a62cfb2..19b16e5 100644
> --- a/include/exec/cputlb.h
> +++ b/include/exec/cputlb.h
> @@ -6,7 +6,7 @@
>   * This library is free software; you can redistribute it and/or
>   * modify it under the terms of the GNU Lesser General Public
>   * License as published by the Free Software Foundation; either
> - * version 2 of the License, or (at your option) any later version.
> + * version 2.1 of the License, or (at your option) any later version.
>   *
>   * This library is distributed in the hope that it will be useful,
>   * but WITHOUT ANY WARRANTY; without even the implied warranty of
> diff --git a/include/exec/exec-all.h b/include/exec/exec-all.h
> index 1fe28d5..5ebe5d4 100644
> --- a/include/exec/exec-all.h
> +++ b/include/exec/exec-all.h
> @@ -6,7 +6,7 @@
>   * This library is free software; you can redistribute it and/or
>   * modify it under the terms of the GNU Lesser General Public
>   * License as published by the Free Software Foundation; either
> - * version 

[PATCH 22/30] overall/alpha tcg cpus|hppa: Fix Lesser GPL version number

2020-10-23 Thread Chetan Pant
There is no "version 2" of the "Lesser" General Public License.
It is either "GPL version 2.0" or "Lesser GPL version 2.1".
This patch replaces all occurrences of "Lesser GPL version 2" with
"Lesser GPL version 2.1" in comment section.

Signed-off-by: Chetan Pant 
---
 cpus-common.c | 2 +-
 include/exec/cpu-all.h| 2 +-
 include/exec/cpu-defs.h   | 2 +-
 include/exec/cpu_ldst.h   | 2 +-
 include/exec/cputlb.h | 2 +-
 include/exec/exec-all.h   | 2 +-
 include/exec/tb-hash.h| 2 +-
 scripts/decodetree.py | 2 +-
 target/alpha/cpu.h| 2 +-
 target/alpha/fpu_helper.c | 2 +-
 target/alpha/gdbstub.c| 2 +-
 target/alpha/helper.c | 2 +-
 target/alpha/int_helper.c | 2 +-
 target/alpha/mem_helper.c | 2 +-
 target/alpha/sys_helper.c | 2 +-
 target/alpha/translate.c  | 2 +-
 target/alpha/vax_helper.c | 2 +-
 target/hppa/cpu.h | 2 +-
 target/hppa/gdbstub.c | 2 +-
 target/hppa/helper.c  | 2 +-
 target/hppa/insns.decode  | 2 +-
 target/hppa/int_helper.c  | 2 +-
 target/hppa/machine.c | 2 +-
 target/hppa/mem_helper.c  | 2 +-
 target/hppa/op_helper.c   | 2 +-
 target/hppa/translate.c   | 2 +-
 26 files changed, 26 insertions(+), 26 deletions(-)

diff --git a/cpus-common.c b/cpus-common.c
index 83475ef..6e73d3e 100644
--- a/cpus-common.c
+++ b/cpus-common.c
@@ -6,7 +6,7 @@
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
+ * version 2.1 of the License, or (at your option) any later version.
  *
  * This library is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/include/exec/cpu-all.h b/include/exec/cpu-all.h
index f6439c4..1c92ab6 100644
--- a/include/exec/cpu-all.h
+++ b/include/exec/cpu-all.h
@@ -6,7 +6,7 @@
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
+ * version 2.1 of the License, or (at your option) any later version.
  *
  * This library is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/include/exec/cpu-defs.h b/include/exec/cpu-defs.h
index 9185632..d1f5e3f 100644
--- a/include/exec/cpu-defs.h
+++ b/include/exec/cpu-defs.h
@@ -6,7 +6,7 @@
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
+ * version 2.1 of the License, or (at your option) any later version.
  *
  * This library is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/include/exec/cpu_ldst.h b/include/exec/cpu_ldst.h
index 30605ed..ef54cb7 100644
--- a/include/exec/cpu_ldst.h
+++ b/include/exec/cpu_ldst.h
@@ -4,7 +4,7 @@
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
+ * version 2.1 of the License, or (at your option) any later version.
  *
  * This library is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/include/exec/cputlb.h b/include/exec/cputlb.h
index a62cfb2..19b16e5 100644
--- a/include/exec/cputlb.h
+++ b/include/exec/cputlb.h
@@ -6,7 +6,7 @@
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
+ * version 2.1 of the License, or (at your option) any later version.
  *
  * This library is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/include/exec/exec-all.h b/include/exec/exec-all.h
index 1fe28d5..5ebe5d4 100644
--- a/include/exec/exec-all.h
+++ b/include/exec/exec-all.h
@@ -6,7 +6,7 @@
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
+ * version 2.1 of the License, or (at your option) any later version.
  *
  * This library is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied