From: Gerd Hoffmann Date: Wed, 20 Nov 2013 06:33:28 +0000 (+0100) Subject: usb: move usb_{hi,lo} helpers to header file. X-Git-Tag: v2.0.0-rc0~203^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0b1fa34e1dd2764ee7ae2be849e1c5ba5e8724ca;p=thirdparty%2Fqemu.git usb: move usb_{hi,lo} helpers to header file. Signed-off-by: Gerd Hoffmann --- diff --git a/hw/usb/desc.c b/hw/usb/desc.c index 5dbe7545f54..f18a0435003 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) { diff --git a/hw/usb/desc.h b/hw/usb/desc.h index ddd3e7485c7..81327b0e749 100644 --- a/hw/usb/desc.h +++ b/hw/usb/desc.h @@ -194,6 +194,17 @@ struct USBDesc { #define USB_DESC_FLAG_SUPER (1 << 1) +/* little helpers */ +static inline uint8_t usb_lo(uint16_t val) +{ + return val & 0xff; +} + +static inline uint8_t usb_hi(uint16_t val) +{ + return (val >> 8) & 0xff; +} + /* generate usb packages from structs */ int usb_desc_device(const USBDescID *id, const USBDescDevice *dev, uint8_t *dest, size_t len);