summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmit Shah2010-12-10 12:40:43 +0100
committerAmit Shah2011-01-19 13:02:29 +0100
commit28eaf465316491884952f855f7bfc9dab597e6fb (patch)
tree157c171fc24a8ed3312795ca6828e6d4df156fba
parentvirtio-console: Factor out common init between console and generic ports (diff)
downloadqemu-28eaf465316491884952f855f7bfc9dab597e6fb.tar.gz
qemu-28eaf465316491884952f855f7bfc9dab597e6fb.tar.xz
qemu-28eaf465316491884952f855f7bfc9dab597e6fb.zip
virtio-console: Remove unnecessary braces
Remove unnecessary braces around a case statement. Signed-off-by: Amit Shah <amit.shah@redhat.com>
-rw-r--r--hw/virtio-console.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/hw/virtio-console.c b/hw/virtio-console.c
index d7fe68b298..d0b935491d 100644
--- a/hw/virtio-console.c
+++ b/hw/virtio-console.c
@@ -48,10 +48,9 @@ static void chr_event(void *opaque, int event)
VirtConsole *vcon = opaque;
switch (event) {
- case CHR_EVENT_OPENED: {
+ case CHR_EVENT_OPENED:
virtio_serial_open(&vcon->port);
break;
- }
case CHR_EVENT_CLOSED:
virtio_serial_close(&vcon->port);
break;