* [PATCH] hw/m68k: Fix typo in SPDX tag
@ 2021-11-03 10:53 Philippe Mathieu-Daudé
2021-11-03 12:17 ` Richard Henderson
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Philippe Mathieu-Daudé @ 2021-11-03 10:53 UTC (permalink / raw)
To: qemu-devel
Cc: Marc-André Lureau, Philippe Mathieu-Daudé,
Laurent Vivier, Paolo Bonzini
Fix 'Identifer' -> 'Identifier' typo.
Cc: Laurent Vivier <laurent@vivier.eu>
Fixes: 8c6df16ff60 ("hw/char: add goldfish-tty")
Fixes: 87855593903 ("hw/intc: add goldfish-pic")
Fixes: 2fde99ee312 ("m68k: add an interrupt controller")
Fixes: 0791bc02b8f ("m68k: add a system controller")
Fixes: e1cecdca559 ("m68k: add Virtual M68k Machine")
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
---
include/hw/char/goldfish_tty.h | 2 +-
include/hw/intc/goldfish_pic.h | 2 +-
include/hw/intc/m68k_irqc.h | 2 +-
include/hw/misc/virt_ctrl.h | 2 +-
hw/char/goldfish_tty.c | 2 +-
hw/intc/goldfish_pic.c | 2 +-
hw/intc/m68k_irqc.c | 2 +-
hw/m68k/virt.c | 2 +-
hw/misc/virt_ctrl.c | 2 +-
9 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/include/hw/char/goldfish_tty.h b/include/hw/char/goldfish_tty.h
index b9dd67362a6..7503d2fa1e1 100644
--- a/include/hw/char/goldfish_tty.h
+++ b/include/hw/char/goldfish_tty.h
@@ -1,5 +1,5 @@
/*
- * SPDX-License-Identifer: GPL-2.0-or-later
+ * SPDX-License-Identifier: GPL-2.0-or-later
*
* Goldfish TTY
*
diff --git a/include/hw/intc/goldfish_pic.h b/include/hw/intc/goldfish_pic.h
index ad13ab37fc3..e9d552f7968 100644
--- a/include/hw/intc/goldfish_pic.h
+++ b/include/hw/intc/goldfish_pic.h
@@ -1,5 +1,5 @@
/*
- * SPDX-License-Identifer: GPL-2.0-or-later
+ * SPDX-License-Identifier: GPL-2.0-or-later
*
* Goldfish PIC
*
diff --git a/include/hw/intc/m68k_irqc.h b/include/hw/intc/m68k_irqc.h
index dbcfcfc2e00..ef91f218122 100644
--- a/include/hw/intc/m68k_irqc.h
+++ b/include/hw/intc/m68k_irqc.h
@@ -1,5 +1,5 @@
/*
- * SPDX-License-Identifer: GPL-2.0-or-later
+ * SPDX-License-Identifier: GPL-2.0-or-later
*
* QEMU Motorola 680x0 IRQ Controller
*
diff --git a/include/hw/misc/virt_ctrl.h b/include/hw/misc/virt_ctrl.h
index edfadc46950..25a237e5187 100644
--- a/include/hw/misc/virt_ctrl.h
+++ b/include/hw/misc/virt_ctrl.h
@@ -1,5 +1,5 @@
/*
- * SPDX-License-Identifer: GPL-2.0-or-later
+ * SPDX-License-Identifier: GPL-2.0-or-later
*
* Virt system Controller
*/
diff --git a/hw/char/goldfish_tty.c b/hw/char/goldfish_tty.c
index 8365a187614..20b77885c18 100644
--- a/hw/char/goldfish_tty.c
+++ b/hw/char/goldfish_tty.c
@@ -1,5 +1,5 @@
/*
- * SPDX-License-Identifer: GPL-2.0-or-later
+ * SPDX-License-Identifier: GPL-2.0-or-later
*
* Goldfish TTY
*
diff --git a/hw/intc/goldfish_pic.c b/hw/intc/goldfish_pic.c
index e3b43a69f16..dfd53275f69 100644
--- a/hw/intc/goldfish_pic.c
+++ b/hw/intc/goldfish_pic.c
@@ -1,5 +1,5 @@
/*
- * SPDX-License-Identifer: GPL-2.0-or-later
+ * SPDX-License-Identifier: GPL-2.0-or-later
*
* Goldfish PIC
*
diff --git a/hw/intc/m68k_irqc.c b/hw/intc/m68k_irqc.c
index 2133d2a698a..0c515e4ecb7 100644
--- a/hw/intc/m68k_irqc.c
+++ b/hw/intc/m68k_irqc.c
@@ -1,5 +1,5 @@
/*
- * SPDX-License-Identifer: GPL-2.0-or-later
+ * SPDX-License-Identifier: GPL-2.0-or-later
*
* QEMU Motorola 680x0 IRQ Controller
*
diff --git a/hw/m68k/virt.c b/hw/m68k/virt.c
index 4e8bce5aa6f..edc58fbddae 100644
--- a/hw/m68k/virt.c
+++ b/hw/m68k/virt.c
@@ -1,5 +1,5 @@
/*
- * SPDX-License-Identifer: GPL-2.0-or-later
+ * SPDX-License-Identifier: GPL-2.0-or-later
*
* QEMU Vitual M68K Machine
*
diff --git a/hw/misc/virt_ctrl.c b/hw/misc/virt_ctrl.c
index 3552d7a09ab..e75d1e7e17b 100644
--- a/hw/misc/virt_ctrl.c
+++ b/hw/misc/virt_ctrl.c
@@ -1,5 +1,5 @@
/*
- * SPDX-License-Identifer: GPL-2.0-or-later
+ * SPDX-License-Identifier: GPL-2.0-or-later
*
* Virt system Controller
*/
--
2.31.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] hw/m68k: Fix typo in SPDX tag
2021-11-03 10:53 [PATCH] hw/m68k: Fix typo in SPDX tag Philippe Mathieu-Daudé
@ 2021-11-03 12:17 ` Richard Henderson
2021-11-03 13:14 ` Laurent Vivier
2021-11-03 18:31 ` Laurent Vivier
2 siblings, 0 replies; 4+ messages in thread
From: Richard Henderson @ 2021-11-03 12:17 UTC (permalink / raw)
To: Philippe Mathieu-Daudé, qemu-devel
Cc: Marc-André Lureau, Laurent Vivier, Paolo Bonzini
On 11/3/21 6:53 AM, Philippe Mathieu-Daudé wrote:
> Fix 'Identifer' -> 'Identifier' typo.
>
> Cc: Laurent Vivier<laurent@vivier.eu>
> Fixes: 8c6df16ff60 ("hw/char: add goldfish-tty")
> Fixes: 87855593903 ("hw/intc: add goldfish-pic")
> Fixes: 2fde99ee312 ("m68k: add an interrupt controller")
> Fixes: 0791bc02b8f ("m68k: add a system controller")
> Fixes: e1cecdca559 ("m68k: add Virtual M68k Machine")
> Signed-off-by: Philippe Mathieu-Daudé<f4bug@amsat.org>
> ---
> include/hw/char/goldfish_tty.h | 2 +-
> include/hw/intc/goldfish_pic.h | 2 +-
> include/hw/intc/m68k_irqc.h | 2 +-
> include/hw/misc/virt_ctrl.h | 2 +-
> hw/char/goldfish_tty.c | 2 +-
> hw/intc/goldfish_pic.c | 2 +-
> hw/intc/m68k_irqc.c | 2 +-
> hw/m68k/virt.c | 2 +-
> hw/misc/virt_ctrl.c | 2 +-
> 9 files changed, 9 insertions(+), 9 deletions(-)
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
r~
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] hw/m68k: Fix typo in SPDX tag
2021-11-03 10:53 [PATCH] hw/m68k: Fix typo in SPDX tag Philippe Mathieu-Daudé
2021-11-03 12:17 ` Richard Henderson
@ 2021-11-03 13:14 ` Laurent Vivier
2021-11-03 18:31 ` Laurent Vivier
2 siblings, 0 replies; 4+ messages in thread
From: Laurent Vivier @ 2021-11-03 13:14 UTC (permalink / raw)
To: Philippe Mathieu-Daudé, qemu-devel
Cc: Marc-André Lureau, Paolo Bonzini
Le 03/11/2021 à 11:53, Philippe Mathieu-Daudé a écrit :
> Fix 'Identifer' -> 'Identifier' typo.
>
> Cc: Laurent Vivier <laurent@vivier.eu>
> Fixes: 8c6df16ff60 ("hw/char: add goldfish-tty")
> Fixes: 87855593903 ("hw/intc: add goldfish-pic")
> Fixes: 2fde99ee312 ("m68k: add an interrupt controller")
> Fixes: 0791bc02b8f ("m68k: add a system controller")
> Fixes: e1cecdca559 ("m68k: add Virtual M68k Machine")
> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
> ---
> include/hw/char/goldfish_tty.h | 2 +-
> include/hw/intc/goldfish_pic.h | 2 +-
> include/hw/intc/m68k_irqc.h | 2 +-
> include/hw/misc/virt_ctrl.h | 2 +-
> hw/char/goldfish_tty.c | 2 +-
> hw/intc/goldfish_pic.c | 2 +-
> hw/intc/m68k_irqc.c | 2 +-
> hw/m68k/virt.c | 2 +-
> hw/misc/virt_ctrl.c | 2 +-
> 9 files changed, 9 insertions(+), 9 deletions(-)
>
> diff --git a/include/hw/char/goldfish_tty.h b/include/hw/char/goldfish_tty.h
> index b9dd67362a6..7503d2fa1e1 100644
> --- a/include/hw/char/goldfish_tty.h
> +++ b/include/hw/char/goldfish_tty.h
> @@ -1,5 +1,5 @@
> /*
> - * SPDX-License-Identifer: GPL-2.0-or-later
> + * SPDX-License-Identifier: GPL-2.0-or-later
> *
> * Goldfish TTY
> *
> diff --git a/include/hw/intc/goldfish_pic.h b/include/hw/intc/goldfish_pic.h
> index ad13ab37fc3..e9d552f7968 100644
> --- a/include/hw/intc/goldfish_pic.h
> +++ b/include/hw/intc/goldfish_pic.h
> @@ -1,5 +1,5 @@
> /*
> - * SPDX-License-Identifer: GPL-2.0-or-later
> + * SPDX-License-Identifier: GPL-2.0-or-later
> *
> * Goldfish PIC
> *
> diff --git a/include/hw/intc/m68k_irqc.h b/include/hw/intc/m68k_irqc.h
> index dbcfcfc2e00..ef91f218122 100644
> --- a/include/hw/intc/m68k_irqc.h
> +++ b/include/hw/intc/m68k_irqc.h
> @@ -1,5 +1,5 @@
> /*
> - * SPDX-License-Identifer: GPL-2.0-or-later
> + * SPDX-License-Identifier: GPL-2.0-or-later
> *
> * QEMU Motorola 680x0 IRQ Controller
> *
> diff --git a/include/hw/misc/virt_ctrl.h b/include/hw/misc/virt_ctrl.h
> index edfadc46950..25a237e5187 100644
> --- a/include/hw/misc/virt_ctrl.h
> +++ b/include/hw/misc/virt_ctrl.h
> @@ -1,5 +1,5 @@
> /*
> - * SPDX-License-Identifer: GPL-2.0-or-later
> + * SPDX-License-Identifier: GPL-2.0-or-later
> *
> * Virt system Controller
> */
> diff --git a/hw/char/goldfish_tty.c b/hw/char/goldfish_tty.c
> index 8365a187614..20b77885c18 100644
> --- a/hw/char/goldfish_tty.c
> +++ b/hw/char/goldfish_tty.c
> @@ -1,5 +1,5 @@
> /*
> - * SPDX-License-Identifer: GPL-2.0-or-later
> + * SPDX-License-Identifier: GPL-2.0-or-later
> *
> * Goldfish TTY
> *
> diff --git a/hw/intc/goldfish_pic.c b/hw/intc/goldfish_pic.c
> index e3b43a69f16..dfd53275f69 100644
> --- a/hw/intc/goldfish_pic.c
> +++ b/hw/intc/goldfish_pic.c
> @@ -1,5 +1,5 @@
> /*
> - * SPDX-License-Identifer: GPL-2.0-or-later
> + * SPDX-License-Identifier: GPL-2.0-or-later
> *
> * Goldfish PIC
> *
> diff --git a/hw/intc/m68k_irqc.c b/hw/intc/m68k_irqc.c
> index 2133d2a698a..0c515e4ecb7 100644
> --- a/hw/intc/m68k_irqc.c
> +++ b/hw/intc/m68k_irqc.c
> @@ -1,5 +1,5 @@
> /*
> - * SPDX-License-Identifer: GPL-2.0-or-later
> + * SPDX-License-Identifier: GPL-2.0-or-later
> *
> * QEMU Motorola 680x0 IRQ Controller
> *
> diff --git a/hw/m68k/virt.c b/hw/m68k/virt.c
> index 4e8bce5aa6f..edc58fbddae 100644
> --- a/hw/m68k/virt.c
> +++ b/hw/m68k/virt.c
> @@ -1,5 +1,5 @@
> /*
> - * SPDX-License-Identifer: GPL-2.0-or-later
> + * SPDX-License-Identifier: GPL-2.0-or-later
> *
> * QEMU Vitual M68K Machine
> *
> diff --git a/hw/misc/virt_ctrl.c b/hw/misc/virt_ctrl.c
> index 3552d7a09ab..e75d1e7e17b 100644
> --- a/hw/misc/virt_ctrl.c
> +++ b/hw/misc/virt_ctrl.c
> @@ -1,5 +1,5 @@
> /*
> - * SPDX-License-Identifer: GPL-2.0-or-later
> + * SPDX-License-Identifier: GPL-2.0-or-later
> *
> * Virt system Controller
> */
>
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] hw/m68k: Fix typo in SPDX tag
2021-11-03 10:53 [PATCH] hw/m68k: Fix typo in SPDX tag Philippe Mathieu-Daudé
2021-11-03 12:17 ` Richard Henderson
2021-11-03 13:14 ` Laurent Vivier
@ 2021-11-03 18:31 ` Laurent Vivier
2 siblings, 0 replies; 4+ messages in thread
From: Laurent Vivier @ 2021-11-03 18:31 UTC (permalink / raw)
To: Philippe Mathieu-Daudé, qemu-devel
Cc: qemu-trivial@nongnu.org, Marc-André Lureau, Paolo Bonzini
Le 03/11/2021 à 11:53, Philippe Mathieu-Daudé a écrit :
> Fix 'Identifer' -> 'Identifier' typo.
>
> Cc: Laurent Vivier <laurent@vivier.eu>
> Fixes: 8c6df16ff60 ("hw/char: add goldfish-tty")
> Fixes: 87855593903 ("hw/intc: add goldfish-pic")
> Fixes: 2fde99ee312 ("m68k: add an interrupt controller")
> Fixes: 0791bc02b8f ("m68k: add a system controller")
> Fixes: e1cecdca559 ("m68k: add Virtual M68k Machine")
> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
> ---
> include/hw/char/goldfish_tty.h | 2 +-
> include/hw/intc/goldfish_pic.h | 2 +-
> include/hw/intc/m68k_irqc.h | 2 +-
> include/hw/misc/virt_ctrl.h | 2 +-
> hw/char/goldfish_tty.c | 2 +-
> hw/intc/goldfish_pic.c | 2 +-
> hw/intc/m68k_irqc.c | 2 +-
> hw/m68k/virt.c | 2 +-
> hw/misc/virt_ctrl.c | 2 +-
> 9 files changed, 9 insertions(+), 9 deletions(-)
>
> diff --git a/include/hw/char/goldfish_tty.h b/include/hw/char/goldfish_tty.h
> index b9dd67362a6..7503d2fa1e1 100644
> --- a/include/hw/char/goldfish_tty.h
> +++ b/include/hw/char/goldfish_tty.h
> @@ -1,5 +1,5 @@
> /*
> - * SPDX-License-Identifer: GPL-2.0-or-later
> + * SPDX-License-Identifier: GPL-2.0-or-later
> *
> * Goldfish TTY
> *
> diff --git a/include/hw/intc/goldfish_pic.h b/include/hw/intc/goldfish_pic.h
> index ad13ab37fc3..e9d552f7968 100644
> --- a/include/hw/intc/goldfish_pic.h
> +++ b/include/hw/intc/goldfish_pic.h
> @@ -1,5 +1,5 @@
> /*
> - * SPDX-License-Identifer: GPL-2.0-or-later
> + * SPDX-License-Identifier: GPL-2.0-or-later
> *
> * Goldfish PIC
> *
> diff --git a/include/hw/intc/m68k_irqc.h b/include/hw/intc/m68k_irqc.h
> index dbcfcfc2e00..ef91f218122 100644
> --- a/include/hw/intc/m68k_irqc.h
> +++ b/include/hw/intc/m68k_irqc.h
> @@ -1,5 +1,5 @@
> /*
> - * SPDX-License-Identifer: GPL-2.0-or-later
> + * SPDX-License-Identifier: GPL-2.0-or-later
> *
> * QEMU Motorola 680x0 IRQ Controller
> *
> diff --git a/include/hw/misc/virt_ctrl.h b/include/hw/misc/virt_ctrl.h
> index edfadc46950..25a237e5187 100644
> --- a/include/hw/misc/virt_ctrl.h
> +++ b/include/hw/misc/virt_ctrl.h
> @@ -1,5 +1,5 @@
> /*
> - * SPDX-License-Identifer: GPL-2.0-or-later
> + * SPDX-License-Identifier: GPL-2.0-or-later
> *
> * Virt system Controller
> */
> diff --git a/hw/char/goldfish_tty.c b/hw/char/goldfish_tty.c
> index 8365a187614..20b77885c18 100644
> --- a/hw/char/goldfish_tty.c
> +++ b/hw/char/goldfish_tty.c
> @@ -1,5 +1,5 @@
> /*
> - * SPDX-License-Identifer: GPL-2.0-or-later
> + * SPDX-License-Identifier: GPL-2.0-or-later
> *
> * Goldfish TTY
> *
> diff --git a/hw/intc/goldfish_pic.c b/hw/intc/goldfish_pic.c
> index e3b43a69f16..dfd53275f69 100644
> --- a/hw/intc/goldfish_pic.c
> +++ b/hw/intc/goldfish_pic.c
> @@ -1,5 +1,5 @@
> /*
> - * SPDX-License-Identifer: GPL-2.0-or-later
> + * SPDX-License-Identifier: GPL-2.0-or-later
> *
> * Goldfish PIC
> *
> diff --git a/hw/intc/m68k_irqc.c b/hw/intc/m68k_irqc.c
> index 2133d2a698a..0c515e4ecb7 100644
> --- a/hw/intc/m68k_irqc.c
> +++ b/hw/intc/m68k_irqc.c
> @@ -1,5 +1,5 @@
> /*
> - * SPDX-License-Identifer: GPL-2.0-or-later
> + * SPDX-License-Identifier: GPL-2.0-or-later
> *
> * QEMU Motorola 680x0 IRQ Controller
> *
> diff --git a/hw/m68k/virt.c b/hw/m68k/virt.c
> index 4e8bce5aa6f..edc58fbddae 100644
> --- a/hw/m68k/virt.c
> +++ b/hw/m68k/virt.c
> @@ -1,5 +1,5 @@
> /*
> - * SPDX-License-Identifer: GPL-2.0-or-later
> + * SPDX-License-Identifier: GPL-2.0-or-later
> *
> * QEMU Vitual M68K Machine
> *
> diff --git a/hw/misc/virt_ctrl.c b/hw/misc/virt_ctrl.c
> index 3552d7a09ab..e75d1e7e17b 100644
> --- a/hw/misc/virt_ctrl.c
> +++ b/hw/misc/virt_ctrl.c
> @@ -1,5 +1,5 @@
> /*
> - * SPDX-License-Identifer: GPL-2.0-or-later
> + * SPDX-License-Identifier: GPL-2.0-or-later
> *
> * Virt system Controller
> */
>
Applied to my trivial-patches branch.
Thanks,
Laurent
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2021-11-03 18:40 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-11-03 10:53 [PATCH] hw/m68k: Fix typo in SPDX tag Philippe Mathieu-Daudé
2021-11-03 12:17 ` Richard Henderson
2021-11-03 13:14 ` Laurent Vivier
2021-11-03 18:31 ` Laurent Vivier
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).