qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] spelling: hw/audio/virtio-snd.c: initalize
@ 2023-11-13 21:20 Michael Tokarev
  2023-11-13 21:20 ` [PATCH] spelling: qapi/migration.json: transfering Michael Tokarev
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Michael Tokarev @ 2023-11-13 21:20 UTC (permalink / raw)
  To: qemu-devel
  Cc: qemu-trivial, Michael Tokarev, Manos Pitsidianakis, Gerd Hoffmann,
	Michael S. Tsirkin

Fixes: eb9ad377bb94 "virtio-sound: handle control messages and streams"
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
---
 hw/audio/virtio-snd.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hw/audio/virtio-snd.c b/hw/audio/virtio-snd.c
index a18a9949a7..2fe966e311 100644
--- a/hw/audio/virtio-snd.c
+++ b/hw/audio/virtio-snd.c
@@ -1126,7 +1126,7 @@ static void virtio_snd_realize(DeviceState *dev, Error **errp)
         status = virtio_snd_set_pcm_params(vsnd, i, &default_params);
         if (status != cpu_to_le32(VIRTIO_SND_S_OK)) {
             error_setg(errp,
-                       "Can't initalize stream params, device responded with %s.",
+                       "Can't initialize stream params, device responded with %s.",
                        print_code(status));
             return;
         }
-- 
2.39.2



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH] spelling: qapi/migration.json: transfering
  2023-11-13 21:20 [PATCH] spelling: hw/audio/virtio-snd.c: initalize Michael Tokarev
@ 2023-11-13 21:20 ` Michael Tokarev
  2023-11-13 21:27 ` [PATCH] spelling: hw/audio/virtio-snd.c: initalize Stefan Weil via
  2023-11-13 21:52 ` Philippe Mathieu-Daudé
  2 siblings, 0 replies; 4+ messages in thread
From: Michael Tokarev @ 2023-11-13 21:20 UTC (permalink / raw)
  To: qemu-devel
  Cc: qemu-trivial, Michael Tokarev, Het Gala, Juan Quintela, Peter Xu,
	Fabiano Rosas, Eric Blake

Fixes: 074dbce5fcce "migration: New migrate and migrate-incoming argument 'channels'"
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
---
 qapi/migration.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/qapi/migration.json b/qapi/migration.json
index 975761eebd..eb2f883513 100644
--- a/qapi/migration.json
+++ b/qapi/migration.json
@@ -1658,7 +1658,7 @@
 #
 # Migration stream channel parameters.
 #
-# @channel-type: Channel type for transfering packet information.
+# @channel-type: Channel type for transferring packet information.
 #
 # @addr: Migration endpoint configuration on destination interface.
 #
-- 
2.39.2



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] spelling: hw/audio/virtio-snd.c: initalize
  2023-11-13 21:20 [PATCH] spelling: hw/audio/virtio-snd.c: initalize Michael Tokarev
  2023-11-13 21:20 ` [PATCH] spelling: qapi/migration.json: transfering Michael Tokarev
@ 2023-11-13 21:27 ` Stefan Weil via
  2023-11-13 21:52 ` Philippe Mathieu-Daudé
  2 siblings, 0 replies; 4+ messages in thread
From: Stefan Weil via @ 2023-11-13 21:27 UTC (permalink / raw)
  To: Michael Tokarev, qemu-devel
  Cc: qemu-trivial, Manos Pitsidianakis, Gerd Hoffmann,
	Michael S. Tsirkin

Am 13.11.23 um 22:20 schrieb Michael Tokarev:
> Fixes: eb9ad377bb94 "virtio-sound: handle control messages and streams"
> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
> ---
>   hw/audio/virtio-snd.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/hw/audio/virtio-snd.c b/hw/audio/virtio-snd.c
> index a18a9949a7..2fe966e311 100644
> --- a/hw/audio/virtio-snd.c
> +++ b/hw/audio/virtio-snd.c
> @@ -1126,7 +1126,7 @@ static void virtio_snd_realize(DeviceState *dev, Error **errp)
>           status = virtio_snd_set_pcm_params(vsnd, i, &default_params);
>           if (status != cpu_to_le32(VIRTIO_SND_S_OK)) {
>               error_setg(errp,
> -                       "Can't initalize stream params, device responded with %s.",
> +                       "Can't initialize stream params, device responded with %s.",
>                          print_code(status));
>               return;
>           }

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

Thanks,
Stefan


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] spelling: hw/audio/virtio-snd.c: initalize
  2023-11-13 21:20 [PATCH] spelling: hw/audio/virtio-snd.c: initalize Michael Tokarev
  2023-11-13 21:20 ` [PATCH] spelling: qapi/migration.json: transfering Michael Tokarev
  2023-11-13 21:27 ` [PATCH] spelling: hw/audio/virtio-snd.c: initalize Stefan Weil via
@ 2023-11-13 21:52 ` Philippe Mathieu-Daudé
  2 siblings, 0 replies; 4+ messages in thread
From: Philippe Mathieu-Daudé @ 2023-11-13 21:52 UTC (permalink / raw)
  To: Michael Tokarev, qemu-devel
  Cc: qemu-trivial, Manos Pitsidianakis, Gerd Hoffmann,
	Michael S. Tsirkin

On 13/11/23 22:20, Michael Tokarev wrote:
> Fixes: eb9ad377bb94 "virtio-sound: handle control messages and streams"
> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
> ---
>   hw/audio/virtio-snd.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-11-13 21:53 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-13 21:20 [PATCH] spelling: hw/audio/virtio-snd.c: initalize Michael Tokarev
2023-11-13 21:20 ` [PATCH] spelling: qapi/migration.json: transfering Michael Tokarev
2023-11-13 21:27 ` [PATCH] spelling: hw/audio/virtio-snd.c: initalize Stefan Weil via
2023-11-13 21:52 ` Philippe Mathieu-Daudé

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).