diff options
| author | Peter Maydell <peter.maydell@linaro.org> | 2015-10-20 10:52:56 +0100 |
|---|---|---|
| committer | Peter Maydell <peter.maydell@linaro.org> | 2015-10-20 10:52:56 +0100 |
| commit | c14e42d7a4495ecbad7bf8b3d603272e3a8992a1 (patch) | |
| tree | 66a8c6ae440d391bae215e5e18c32eb094fee61d /hw/usb/dev-audio.c | |
| parent | f52dd72dc1a679529e13e51a7b57e787455f92f0 (diff) | |
| parent | 37bc43f7fbfb38003550b327002e59d21b80a3e4 (diff) | |
| download | focaccia-qemu-c14e42d7a4495ecbad7bf8b3d603272e3a8992a1.tar.gz focaccia-qemu-c14e42d7a4495ecbad7bf8b3d603272e3a8992a1.zip | |
Merge remote-tracking branch 'remotes/kraxel/tags/pull-usb-20151020-1' into staging
usb: misc small tweaks. # gpg: Signature made Tue 20 Oct 2015 08:24:09 BST using RSA key ID D3E87138 # gpg: Good signature from "Gerd Hoffmann (work) <kraxel@redhat.com>" # gpg: aka "Gerd Hoffmann <gerd@kraxel.org>" # gpg: aka "Gerd Hoffmann (private) <kraxel@gmail.com>" * remotes/kraxel/tags/pull-usb-20151020-1: usb-audio: increate default buffer size usb: print device id in "info usb" monitor command usb-host: add wakeup call for iso xfers Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw/usb/dev-audio.c')
| -rw-r--r-- | hw/usb/dev-audio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/usb/dev-audio.c b/hw/usb/dev-audio.c index f092bb8496..02fb1103c6 100644 --- a/hw/usb/dev-audio.c +++ b/hw/usb/dev-audio.c @@ -664,7 +664,7 @@ static const VMStateDescription vmstate_usb_audio = { static Property usb_audio_properties[] = { DEFINE_PROP_UINT32("debug", USBAudioState, debug, 0), DEFINE_PROP_UINT32("buffer", USBAudioState, buffer, - 8 * USBAUDIO_PACKET_SIZE), + 32 * USBAUDIO_PACKET_SIZE), DEFINE_PROP_END_OF_LIST(), }; |