From f16f79a1bc3a95628c6dc9998bec81485c3c9874 Mon Sep 17 00:00:00 2001 From: espes Date: Mon, 19 Oct 2015 18:31:31 +1100 Subject: [PATCH] xid: nak unless new input data --- hw/xbox/xid.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/hw/xbox/xid.c b/hw/xbox/xid.c index 67f1495dd0..df58c2a314 100644 --- a/hw/xbox/xid.c +++ b/hw/xbox/xid.c @@ -82,6 +82,7 @@ typedef struct USBXIDState { const XIDDesc *xid_desc; QEMUPutKbdEntry *kbd_entry; + bool in_dirty; XIDGamepadReport in_state; XIDGamepadOutputReport out_state; } USBXIDState; @@ -262,6 +263,8 @@ static void xbox_gamepad_keyboard_event(void *opaque, int keycode) default: break; } + + s->in_dirty = true; } @@ -364,7 +367,12 @@ static void usb_xid_handle_data(USBDevice *dev, USBPacket *p) switch (p->pid) { case USB_TOKEN_IN: if (p->ep->nr == 2) { - usb_packet_copy(p, &s->in_state, s->in_state.bLength); + if (s->in_dirty) { + usb_packet_copy(p, &s->in_state, s->in_state.bLength); + s->in_dirty = false; + } else { + p->status = USB_RET_NAK; + } } else { assert(false); }