From: Gerd Hoffmann <kraxel@redhat.com>
To: qemu-devel@nongnu.org
Cc: Gerd Hoffmann <kraxel@redhat.com>
Subject: [Qemu-devel] [PATCH 17/17] usb: move usb_{hi, lo} helpers to header file.
Date: Fri, 29 Nov 2013 09:06:21 +0100 [thread overview]
Message-ID: <1385712381-30918-18-git-send-email-kraxel@redhat.com> (raw)
In-Reply-To: <1385712381-30918-1-git-send-email-kraxel@redhat.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
hw/usb/desc.c | 10 ----------
hw/usb/desc.h | 11 +++++++++++
2 files changed, 11 insertions(+), 10 deletions(-)
diff --git a/hw/usb/desc.c b/hw/usb/desc.c
index 5dbe754..f18a043 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 ddd3e74..81327b0 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);
--
1.8.3.1
prev parent reply other threads:[~2013-11-29 8:06 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-11-29 8:06 [Qemu-devel] [PULL 00/17] usb patch queue Gerd Hoffmann
2013-11-29 8:06 ` [Qemu-devel] [PATCH 01/17] xhci: Add a few missing checks for disconnected devices Gerd Hoffmann
2013-11-29 8:06 ` [Qemu-devel] [PATCH 02/17] xhci: add support for suspend/resume Gerd Hoffmann
2013-11-29 8:06 ` [Qemu-devel] [PATCH 03/17] scsi: Add 2 new sense codes needed by uas Gerd Hoffmann
2013-11-29 8:06 ` [Qemu-devel] [PATCH 04/17] uas: Only use report iu-s for task_mgmt status reporting Gerd Hoffmann
2013-11-29 8:06 ` [Qemu-devel] [PATCH 05/17] uas: Fix / cleanup usb_uas_task error handling Gerd Hoffmann
2013-11-29 8:06 ` [Qemu-devel] [PATCH 06/17] uas: Streams are numbered 1-y, rather then 0-x Gerd Hoffmann
2013-11-29 8:06 ` [Qemu-devel] [PATCH 07/17] uas: Bounds check tags when using streams Gerd Hoffmann
2013-11-29 8:06 ` [Qemu-devel] [PATCH 08/17] uas: Fix response iu struct definition Gerd Hoffmann
2013-11-29 8:06 ` [Qemu-devel] [PATCH 09/17] uas: s/ui/iu/ Gerd Hoffmann
2013-11-29 8:06 ` [Qemu-devel] [PATCH 10/17] usb: Add max_streams attribute to endpoint info Gerd Hoffmann
2013-11-29 8:06 ` [Qemu-devel] [PATCH 11/17] usb: Add usb_device_alloc/free_streams Gerd Hoffmann
2013-11-29 8:06 ` [Qemu-devel] [PATCH 12/17] xhci: Call usb_device_alloc/free_streams Gerd Hoffmann
2013-11-29 8:06 ` [Qemu-devel] [PATCH 13/17] ehci: implement port wakeup Gerd Hoffmann
2013-11-29 8:06 ` [Qemu-devel] [PATCH 14/17] Revert "usb-tablet: Don't claim wakeup capability for USB-2 version" Gerd Hoffmann
2013-11-29 8:06 ` [Qemu-devel] [PATCH 15/17] trace-events: Clean up after removal of old usb-host code Gerd Hoffmann
2013-11-29 8:06 ` [Qemu-devel] [PATCH 16/17] usb: add vendor request defines Gerd Hoffmann
2013-11-29 8:06 ` Gerd Hoffmann [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1385712381-30918-18-git-send-email-kraxel@redhat.com \
--to=kraxel@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).