All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] hid: fix incorrect return value for hid.
@ 2025-09-15 17:57 ShengYi Hung
  2025-09-18  6:14 ` Michael Tokarev
  0 siblings, 1 reply; 4+ messages in thread
From: ShengYi Hung @ 2025-09-15 17:57 UTC (permalink / raw)
  To: qemu-trivial; +Cc: ShengYi Hung

The return value of hid_keyboard_write is used to set the packet's actual_length
and pass to xhci directly to allow guest know how many byte actually processed.
Therefore, return 1 to indicate a successful transfer or it will be
considered as a wrong xfer.

Signed-off-by: ShengYi Hung <aokblast@FreeBSD.org>
---
 hw/input/hid.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/hw/input/hid.c b/hw/input/hid.c
index 76bedc1844..de24cd0ef0 100644
--- a/hw/input/hid.c
+++ b/hw/input/hid.c
@@ -478,6 +478,7 @@ int hid_keyboard_write(HIDState *hs, uint8_t *buf, int len)
             ledstate |= QEMU_CAPS_LOCK_LED;
         }
         kbd_put_ledstate(ledstate);
+        return 1;
     }
     return 0;
 }
-- 
2.50.1



^ permalink raw reply related	[flat|nested] 4+ messages in thread
* [PATCH] hid: fix incorrect return value for hid.
@ 2025-08-21 18:57 ShengYi Hung
  0 siblings, 0 replies; 4+ messages in thread
From: ShengYi Hung @ 2025-08-21 18:57 UTC (permalink / raw)
  To: qemu-devel; +Cc: ShengYi Hung

The return value of hid_keyboard_write is used to set the packet's actual_length.
Therefore, return 1 to indicate a successful transfer or it should be
considered as a wrong xfer.

Signed-off-by: ShengYi Hung <aokblast@FreeBSD.org>
Sponsored by:   The FreeBSD Foundation
---
 hw/input/hid.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/hw/input/hid.c b/hw/input/hid.c
index 76bedc1844..5da9fee763 100644
--- a/hw/input/hid.c
+++ b/hw/input/hid.c
@@ -478,6 +478,7 @@ int hid_keyboard_write(HIDState *hs, uint8_t *buf, int len)
             ledstate |= QEMU_CAPS_LOCK_LED;
         }
         kbd_put_ledstate(ledstate);
+        return (1);
     }
     return 0;
 }
-- 
2.50.1



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

end of thread, other threads:[~2025-09-18  8:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-15 17:57 [PATCH] hid: fix incorrect return value for hid ShengYi Hung
2025-09-18  6:14 ` Michael Tokarev
2025-09-18  8:35   ` ShengYi Hung
  -- strict thread matches above, loose matches on Subject: below --
2025-08-21 18:57 ShengYi Hung

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.