[PATCH TRIVIAL] char-win-stdio: fix typo in spelling of 'stdio'

Filip Hejsek posted 1 patch 1 month, 1 week ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20260618-char-win-stdio-typo-v1-1-05086b1b326b@gmail.com
Maintainers: "Marc-André Lureau" <marcandre.lureau@redhat.com>, Paolo Bonzini <pbonzini@redhat.com>, Michael Tokarev <mjt@tls.msk.ru>, Laurent Vivier <laurent@vivier.eu>
chardev/char-win-stdio.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
[PATCH TRIVIAL] char-win-stdio: fix typo in spelling of 'stdio'
Posted by Filip Hejsek 1 month, 1 week ago
Signed-off-by: Filip Hejsek <filip.hejsek@gmail.com>
---
 chardev/char-win-stdio.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/chardev/char-win-stdio.c b/chardev/char-win-stdio.c
index bb9c195a8b..0deba3bffb 100644
--- a/chardev/char-win-stdio.c
+++ b/chardev/char-win-stdio.c
@@ -128,7 +128,7 @@ static void win_stdio_thread_wait_func(void *opaque)
     SetEvent(stdio->hInputDoneEvent);
 }
 
-static void win_stiod_chr_set_echo(Chardev *chr, bool echo)
+static void win_stdio_chr_set_echo(Chardev *chr, bool echo)
 {
     WinStdioChardev *stdio = WIN_STDIO_CHARDEV(chr);
     DWORD              dwMode = 0;
@@ -205,7 +205,7 @@ static bool win_stdio_chr_open(Chardev *chr,
 
     SetConsoleMode(stdio->hStdIn, dwMode);
 
-    win_stiod_chr_set_echo(chr, false);
+    win_stdio_chr_set_echo(chr, false);
 
     qemu_chr_be_event(chr, CHR_EVENT_OPENED);
     return true;
@@ -263,7 +263,7 @@ static void char_win_stdio_class_init(ObjectClass *oc, const void *data)
 
     cc->chr_open = win_stdio_chr_open;
     cc->chr_write = win_stdio_chr_write;
-    cc->chr_set_echo = win_stiod_chr_set_echo;
+    cc->chr_set_echo = win_stdio_chr_set_echo;
 }
 
 static const TypeInfo char_win_stdio_type_info = {

---
base-commit: c7cf7c810153d6f5f31aa2d5c0dee9087f6b4dff
change-id: 20260618-char-win-stdio-typo-5abb197de4e2

Best regards,
--  
Filip Hejsek <filip.hejsek@gmail.com>
Re: [PATCH TRIVIAL] char-win-stdio: fix typo in spelling of 'stdio'
Posted by Philippe Mathieu-Daudé 1 month, 1 week ago
On 18/6/26 13:20, Filip Hejsek wrote:
> Signed-off-by: Filip Hejsek <filip.hejsek@gmail.com>
> ---
>   chardev/char-win-stdio.c | 6 +++---
>   1 file changed, 3 insertions(+), 3 deletions(-)

Reviewed-by: Philippe Mathieu-Daudé <philmd@oss.qualcomm.com>

Re: [PATCH TRIVIAL] char-win-stdio: fix typo in spelling of 'stdio'
Posted by Stefan Weil via qemu development 1 month, 1 week ago
Am 18.06.26 um 13:20 schrieb Filip Hejsek:
> Signed-off-by: Filip Hejsek <filip.hejsek@gmail.com>
> ---
>   chardev/char-win-stdio.c | 6 +++---
>   1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/chardev/char-win-stdio.c b/chardev/char-win-stdio.c
> index bb9c195a8b..0deba3bffb 100644
> --- a/chardev/char-win-stdio.c
> +++ b/chardev/char-win-stdio.c
> @@ -128,7 +128,7 @@ static void win_stdio_thread_wait_func(void *opaque)
>       SetEvent(stdio->hInputDoneEvent);
>   }
>   
> -static void win_stiod_chr_set_echo(Chardev *chr, bool echo)
> +static void win_stdio_chr_set_echo(Chardev *chr, bool echo)
>   {
>       WinStdioChardev *stdio = WIN_STDIO_CHARDEV(chr);
>       DWORD              dwMode = 0;
> @@ -205,7 +205,7 @@ static bool win_stdio_chr_open(Chardev *chr,
>   
>       SetConsoleMode(stdio->hStdIn, dwMode);
>   
> -    win_stiod_chr_set_echo(chr, false);
> +    win_stdio_chr_set_echo(chr, false);
>   
>       qemu_chr_be_event(chr, CHR_EVENT_OPENED);
>       return true;
> @@ -263,7 +263,7 @@ static void char_win_stdio_class_init(ObjectClass *oc, const void *data)
>   
>       cc->chr_open = win_stdio_chr_open;
>       cc->chr_write = win_stdio_chr_write;
> -    cc->chr_set_echo = win_stiod_chr_set_echo;
> +    cc->chr_set_echo = win_stdio_chr_set_echo;
>   }
>   
>   static const TypeInfo char_win_stdio_type_info = {
> 
> ---
> base-commit: c7cf7c810153d6f5f31aa2d5c0dee9087f6b4dff
> change-id: 20260618-char-win-stdio-typo-5abb197de4e2
> 
> Best regards,
> --
> Filip Hejsek <filip.hejsek@gmail.com>

Reviewed-by: Stefan Weil <sw@weilnetz.de>

Thanks!
Re: [PATCH TRIVIAL] char-win-stdio: fix typo in spelling of 'stdio'
Posted by Marc-André Lureau 1 month, 1 week ago
On Thu, Jun 18, 2026 at 3:21 PM Filip Hejsek <filip.hejsek@gmail.com> wrote:
>
> Signed-off-by: Filip Hejsek <filip.hejsek@gmail.com>

Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>

> ---
>  chardev/char-win-stdio.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/chardev/char-win-stdio.c b/chardev/char-win-stdio.c
> index bb9c195a8b..0deba3bffb 100644
> --- a/chardev/char-win-stdio.c
> +++ b/chardev/char-win-stdio.c
> @@ -128,7 +128,7 @@ static void win_stdio_thread_wait_func(void *opaque)
>      SetEvent(stdio->hInputDoneEvent);
>  }
>
> -static void win_stiod_chr_set_echo(Chardev *chr, bool echo)
> +static void win_stdio_chr_set_echo(Chardev *chr, bool echo)
>  {
>      WinStdioChardev *stdio = WIN_STDIO_CHARDEV(chr);
>      DWORD              dwMode = 0;
> @@ -205,7 +205,7 @@ static bool win_stdio_chr_open(Chardev *chr,
>
>      SetConsoleMode(stdio->hStdIn, dwMode);
>
> -    win_stiod_chr_set_echo(chr, false);
> +    win_stdio_chr_set_echo(chr, false);
>
>      qemu_chr_be_event(chr, CHR_EVENT_OPENED);
>      return true;
> @@ -263,7 +263,7 @@ static void char_win_stdio_class_init(ObjectClass *oc, const void *data)
>
>      cc->chr_open = win_stdio_chr_open;
>      cc->chr_write = win_stdio_chr_write;
> -    cc->chr_set_echo = win_stiod_chr_set_echo;
> +    cc->chr_set_echo = win_stdio_chr_set_echo;
>  }
>
>  static const TypeInfo char_win_stdio_type_info = {
>
> ---
> base-commit: c7cf7c810153d6f5f31aa2d5c0dee9087f6b4dff
> change-id: 20260618-char-win-stdio-typo-5abb197de4e2
>
> Best regards,
> --
> Filip Hejsek <filip.hejsek@gmail.com>
>