diff options
author | Amit Shah <amit.shah@redhat.com> | 2010-12-10 17:10:43 +0530 |
---|---|---|
committer | Amit Shah <amit.shah@redhat.com> | 2011-01-19 17:32:29 +0530 |
commit | 28eaf465316491884952f855f7bfc9dab597e6fb (patch) | |
tree | 157c171fc24a8ed3312795ca6828e6d4df156fba /hw/virtio-console.c | |
parent | cbe77b616cb73d0a0aedbf9c80cb3dcb7d324535 (diff) |
virtio-console: Remove unnecessary braces
Remove unnecessary braces around a case statement.
Signed-off-by: Amit Shah <amit.shah@redhat.com>
Diffstat (limited to 'hw/virtio-console.c')
-rw-r--r-- | hw/virtio-console.c | 3 |
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; |