diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2010-11-17 11:03:53 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2011-01-11 15:56:00 +0100 |
commit | 37fb59d3032687b6f0d94c307bd0a846e0ca1fe0 (patch) | |
tree | 1538cef5e0c1abc4a5fca8850a01460b2bfe6bc2 /Makefile.objs | |
parent | 5d0d62feee8aa75525207ef24919c0522651a432 (diff) | |
download | qemu-37fb59d3032687b6f0d94c307bd0a846e0ca1fe0.tar.gz qemu-37fb59d3032687b6f0d94c307bd0a846e0ca1fe0.tar.bz2 qemu-37fb59d3032687b6f0d94c307bd0a846e0ca1fe0.zip |
usb: data structs and helpers for usb descriptors.
This patch adds hw/usb-desc.[ch] files. They carry data structures
for various usb descriptors and helper functions to generate usb
packets from the structures.
The intention is to have a internal representation of the device
desription which is more usable than the current char array blobs,
so we can have common code handle common usb device emulation using
the device description.
The usage of this infrastructure is optional for usb drivers as there
are cases such as pass-through where it probably isn't very useful.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'Makefile.objs')
-rw-r--r-- | Makefile.objs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.objs b/Makefile.objs index c3e52c5674..fda366d11c 100644 --- a/Makefile.objs +++ b/Makefile.objs @@ -88,7 +88,7 @@ common-obj-y += eeprom93xx.o common-obj-y += scsi-disk.o cdrom.o common-obj-y += scsi-generic.o scsi-bus.o common-obj-y += usb.o usb-hub.o usb-$(HOST_USB).o usb-hid.o usb-msd.o usb-wacom.o -common-obj-y += usb-serial.o usb-net.o usb-bus.o +common-obj-y += usb-serial.o usb-net.o usb-bus.o usb-desc.o common-obj-$(CONFIG_SSI) += ssi.o common-obj-$(CONFIG_SSI_SD) += ssi-sd.o common-obj-$(CONFIG_SD) += sd.o |