From: Amit Shah Date: Fri, 10 Dec 2010 11:40:43 +0000 (+0530) Subject: virtio-console: Remove unnecessary braces X-Git-Tag: TizenStudio_2.0_p2.3.2~208^2~6532^2~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=28eaf465316491884952f855f7bfc9dab597e6fb;p=sdk%2Femulator%2Fqemu.git virtio-console: Remove unnecessary braces Remove unnecessary braces around a case statement. Signed-off-by: Amit Shah --- diff --git a/hw/virtio-console.c b/hw/virtio-console.c index d7fe68b..d0b9354 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;