summaryrefslogtreecommitdiff
path: root/hw/usb/desc.c
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2013-11-20 07:33:28 +0100
committerGerd Hoffmann <kraxel@redhat.com>2013-11-28 15:39:27 +0100
commit0b1fa34e1dd2764ee7ae2be849e1c5ba5e8724ca (patch)
treed9247e45c67b950cfd167023902045c6ba28b67f /hw/usb/desc.c
parent2b81ba53887e6f3b5a79ecd2f446f849ed89561f (diff)
downloadqemu-0b1fa34e1dd2764ee7ae2be849e1c5ba5e8724ca.tar.gz
usb: move usb_{hi,lo} helpers to header file.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw/usb/desc.c')
-rw-r--r--hw/usb/desc.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/hw/usb/desc.c b/hw/usb/desc.c
index 5dbe7545f5..f18a043500 100644
--- a/hw/usb/desc.c
+++ b/hw/usb/desc.c
@@ -6,16 +6,6 @@
/* ------------------------------------------------------------------ */
-static uint8_t usb_lo(uint16_t val)
-{
- return val & 0xff;
-}
-
-static uint8_t usb_hi(uint16_t val)
-{
- return (val >> 8) & 0xff;
-}
-
int usb_desc_device(const USBDescID *id, const USBDescDevice *dev,
uint8_t *dest, size_t len)
{