summary refs log tree commit diff stats
path: root/hw/usb-serial.c
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2010-11-26 12:35:10 +0100
committerGerd Hoffmann <kraxel@redhat.com>2011-01-11 15:56:01 +0100
commit41c6abbdeb5a86a135ee80a30541ecf52ffd3e23 (patch)
treed53c643fa046fffb4b4587cc4edf3d92319609f3 /hw/usb-serial.c
parent30c7d32a0a822a9496aee51e7269073311339ed9 (diff)
downloadfocaccia-qemu-41c6abbdeb5a86a135ee80a30541ecf52ffd3e23.tar.gz
focaccia-qemu-41c6abbdeb5a86a135ee80a30541ecf52ffd3e23.zip
usb: move USB_REQ_SET_ADDRESS handling to common code
USB_REQ_SET_ADDRESS handling is identical in *all* emulated devices.
Move it to common code.

Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw/usb-serial.c')
-rw-r--r--hw/usb-serial.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/hw/usb-serial.c b/hw/usb-serial.c
index f89eb9b3a3..c1f31c76d3 100644
--- a/hw/usb-serial.c
+++ b/hw/usb-serial.c
@@ -254,10 +254,6 @@ static int usb_serial_handle_control(USBDevice *dev, int request, int value,
         }
         ret = 0;
         break;
-    case DeviceOutRequest | USB_REQ_SET_ADDRESS:
-        dev->addr = value;
-        ret = 0;
-        break;
     case DeviceRequest | USB_REQ_GET_CONFIGURATION:
         data[0] = 1;
         ret = 1;