diff options
author | Chetan Pant <chetan4windows@gmail.com> | 2020-10-23 12:28:01 +0000 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2020-11-15 16:41:42 +0100 |
commit | d9ff33ada7f32ca59f99b270a2d0eb223b3c9c8f (patch) | |
tree | a1e09f07f8f785024dc655b2fdb81860250ab495 | |
parent | 1c79145f12a21e129163eee9ca7a2234e2d97751 (diff) | |
download | qemu-d9ff33ada7f32ca59f99b270a2d0eb223b3c9c8f.zip qemu-d9ff33ada7f32ca59f99b270a2d0eb223b3c9c8f.tar.gz qemu-d9ff33ada7f32ca59f99b270a2d0eb223b3c9c8f.tar.bz2 |
x86 tcg cpus: Fix Lesser GPL version number
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 <chetan4windows@gmail.com>
Message-Id: <20201023122801.19514-1-chetan4windows@gmail.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
-rw-r--r-- | target/i386/bpt_helper.c | 2 | ||||
-rw-r--r-- | target/i386/cc_helper.c | 2 | ||||
-rw-r--r-- | target/i386/cc_helper_template.h | 2 | ||||
-rw-r--r-- | target/i386/cpu.c | 2 | ||||
-rw-r--r-- | target/i386/cpu.h | 2 | ||||
-rw-r--r-- | target/i386/excp_helper.c | 2 | ||||
-rw-r--r-- | target/i386/fpu_helper.c | 2 | ||||
-rw-r--r-- | target/i386/gdbstub.c | 2 | ||||
-rw-r--r-- | target/i386/helper.c | 2 | ||||
-rw-r--r-- | target/i386/int_helper.c | 2 | ||||
-rw-r--r-- | target/i386/mem_helper.c | 2 | ||||
-rw-r--r-- | target/i386/misc_helper.c | 2 | ||||
-rw-r--r-- | target/i386/mpx_helper.c | 2 | ||||
-rw-r--r-- | target/i386/ops_sse.h | 2 | ||||
-rw-r--r-- | target/i386/ops_sse_header.h | 2 | ||||
-rw-r--r-- | target/i386/seg_helper.c | 2 | ||||
-rw-r--r-- | target/i386/shift_helper_template.h | 2 | ||||
-rw-r--r-- | target/i386/smm_helper.c | 2 | ||||
-rw-r--r-- | target/i386/svm_helper.c | 2 | ||||
-rw-r--r-- | target/i386/tcg-stub.c | 2 | ||||
-rw-r--r-- | target/i386/translate.c | 2 |
21 files changed, 21 insertions, 21 deletions
diff --git a/target/i386/bpt_helper.c b/target/i386/bpt_helper.c index c3a8ea7..e6cc292 100644 --- a/target/i386/bpt_helper.c +++ b/target/i386/bpt_helper.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/target/i386/cc_helper.c b/target/i386/cc_helper.c index c9c90e1..924dd3c 100644 --- a/target/i386/cc_helper.c +++ b/target/i386/cc_helper.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/target/i386/cc_helper_template.h b/target/i386/cc_helper_template.h index 607311f..bb611fe 100644 --- a/target/i386/cc_helper_template.h +++ b/target/i386/cc_helper_template.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/target/i386/cpu.c b/target/i386/cpu.c index 0d86069..5a8c960 100644 --- a/target/i386/cpu.c +++ b/target/i386/cpu.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/target/i386/cpu.h b/target/i386/cpu.h index 51c1d5f..88e8586 100644 --- a/target/i386/cpu.h +++ b/target/i386/cpu.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/target/i386/excp_helper.c b/target/i386/excp_helper.c index b10c7ec..1914717 100644 --- a/target/i386/excp_helper.c +++ b/target/i386/excp_helper.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/target/i386/fpu_helper.c b/target/i386/fpu_helper.c index 4ea7387..03b3544 100644 --- a/target/i386/fpu_helper.c +++ b/target/i386/fpu_helper.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/target/i386/gdbstub.c b/target/i386/gdbstub.c index 9ae43bd..4a3de5f 100644 --- a/target/i386/gdbstub.c +++ b/target/i386/gdbstub.c @@ -7,7 +7,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/target/i386/helper.c b/target/i386/helper.c index 32fa21a..516ce0c 100644 --- a/target/i386/helper.c +++ b/target/i386/helper.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/target/i386/int_helper.c b/target/i386/int_helper.c index 334469c..4f89436 100644 --- a/target/i386/int_helper.c +++ b/target/i386/int_helper.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/target/i386/mem_helper.c b/target/i386/mem_helper.c index 3a6d3ae..21ca3e3 100644 --- a/target/i386/mem_helper.c +++ b/target/i386/mem_helper.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/target/i386/misc_helper.c b/target/i386/misc_helper.c index b6b1d41..ae259d9 100644 --- a/target/i386/misc_helper.c +++ b/target/i386/misc_helper.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/target/i386/mpx_helper.c b/target/i386/mpx_helper.c index ade5d24..fd96617 100644 --- a/target/i386/mpx_helper.c +++ b/target/i386/mpx_helper.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/target/i386/ops_sse.h b/target/i386/ops_sse.h index c7614f8..6f1fc17 100644 --- a/target/i386/ops_sse.h +++ b/target/i386/ops_sse.h @@ -7,7 +7,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/target/i386/ops_sse_header.h b/target/i386/ops_sse_header.h index 094aafc..6c0c849 100644 --- a/target/i386/ops_sse_header.h +++ b/target/i386/ops_sse_header.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/target/i386/seg_helper.c b/target/i386/seg_helper.c index be88938..09b6554 100644 --- a/target/i386/seg_helper.c +++ b/target/i386/seg_helper.c @@ -7,7 +7,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/target/i386/shift_helper_template.h b/target/i386/shift_helper_template.h index cf91a2d..54f15d6 100644 --- a/target/i386/shift_helper_template.h +++ b/target/i386/shift_helper_template.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/target/i386/smm_helper.c b/target/i386/smm_helper.c index eb5aa6e..d20e8ed 100644 --- a/target/i386/smm_helper.c +++ b/target/i386/smm_helper.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/target/i386/svm_helper.c b/target/i386/svm_helper.c index 6224387..3893158 100644 --- a/target/i386/svm_helper.c +++ b/target/i386/svm_helper.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/target/i386/tcg-stub.c b/target/i386/tcg-stub.c index b00e23d..8d45579 100644 --- a/target/i386/tcg-stub.c +++ b/target/i386/tcg-stub.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/target/i386/translate.c b/target/i386/translate.c index caea6f5..4c57307 100644 --- a/target/i386/translate.c +++ b/target/i386/translate.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 |