diff options
author | Dong Xu Wang <wdongxu@linux.vnet.ibm.com> | 2013-05-09 15:53:50 +0800 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2013-05-12 13:25:55 +0400 |
commit | c7e775e4dda91472ec538101c536ea8950fe1515 (patch) | |
tree | 4175d7832e54492852a98b62b2a7a94ed7ee33c7 /hw/usb/host-linux.c | |
parent | 7f303adc4f0aaa71b196d9f983150f3ec3367b46 (diff) | |
download | hqemu-c7e775e4dda91472ec538101c536ea8950fe1515.zip hqemu-c7e775e4dda91472ec538101c536ea8950fe1515.tar.gz |
remove double semicolons
Signed-off-by: Dong Xu Wang <wdongxu@linux.vnet.ibm.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'hw/usb/host-linux.c')
-rw-r--r-- | hw/usb/host-linux.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/usb/host-linux.c b/hw/usb/host-linux.c index 8994668..ca09a89 100644 --- a/hw/usb/host-linux.c +++ b/hw/usb/host-linux.c @@ -651,7 +651,7 @@ static void usb_host_handle_reset(USBDevice *dev) trace_usb_host_reset(s->bus_num, s->addr); - usb_host_do_reset(s);; + usb_host_do_reset(s); usb_host_claim_interfaces(s, 0); usb_linux_update_endp_table(s); @@ -1429,7 +1429,7 @@ static void usb_host_exit_notifier(struct Notifier *n, void *data) usb_host_release_port(s); if (s->fd != -1) { - usb_host_do_reset(s);; + usb_host_do_reset(s); } } |