qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] hid: fix incorrect return value for hid.
@ 2025-08-21 18:57 ShengYi Hung
  0 siblings, 0 replies; 3+ 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] 3+ messages in thread

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

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20250915175730.27825-1-aokblast@FreeBSD.org>
2025-09-18  6:14 ` [PATCH] hid: fix incorrect return value for hid Michael Tokarev
2025-09-18  8:35   ` ShengYi Hung
2025-08-21 18:57 ShengYi Hung

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