diff options
| author | Wenchao Xia | 2013-01-14 07:06:25 +0100 |
|---|---|---|
| committer | Luiz Capitulino | 2013-01-17 13:24:52 +0100 |
| commit | 84f2d0ea0f39bc140a6c69ba8e3ffd6b10cae6fa (patch) | |
| tree | 61bda02eccdcc9fe834841ddf0388f1845c0b5b5 /hw/usb/host-bsd.c | |
| parent | Merge remote-tracking branch 'kraxel/chardev.1' into staging (diff) | |
| download | qemu-84f2d0ea0f39bc140a6c69ba8e3ffd6b10cae6fa.tar.gz qemu-84f2d0ea0f39bc140a6c69ba8e3ffd6b10cae6fa.tar.xz qemu-84f2d0ea0f39bc140a6c69ba8e3ffd6b10cae6fa.zip | |
HMP: add QDict to info callback handler
This patch change all info call back function to take
additional QDict * parameter, which allow those command
take parameter. Now it is set to NULL at default case.
Signed-off-by: Wenchao Xia <xiawenc@linux.vnet.ibm.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Diffstat (limited to 'hw/usb/host-bsd.c')
| -rw-r--r-- | hw/usb/host-bsd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/usb/host-bsd.c b/hw/usb/host-bsd.c index 172aecbffd..07f0e01cc0 100644 --- a/hw/usb/host-bsd.c +++ b/hw/usb/host-bsd.c @@ -633,7 +633,7 @@ static int usb_host_info_device(void *opaque, return 0; } -void usb_host_info(Monitor *mon) +void usb_host_info(Monitor *mon, const QDict *qdict) { usb_host_scan(mon, usb_host_info_device); } |
