From patchwork Wed Jan 19 12:27:14 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Amit Shah X-Patchwork-Id: 79453 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 59CD3B70A3 for ; Wed, 19 Jan 2011 23:29:10 +1100 (EST) Received: from localhost ([127.0.0.1]:47246 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PfX9u-0000Bj-R6 for incoming@patchwork.ozlabs.org; Wed, 19 Jan 2011 07:29:06 -0500 Received: from [140.186.70.92] (port=53459 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PfX8W-00009j-NB for qemu-devel@nongnu.org; Wed, 19 Jan 2011 07:27:41 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PfX8V-0007TK-JH for qemu-devel@nongnu.org; Wed, 19 Jan 2011 07:27:40 -0500 Received: from mx1.redhat.com ([209.132.183.28]:61783) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PfX8V-0007TE-83 for qemu-devel@nongnu.org; Wed, 19 Jan 2011 07:27:39 -0500 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id p0JCRUBj023335 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Wed, 19 Jan 2011 07:27:30 -0500 Received: from localhost (dhcp193-64.pnq.redhat.com [10.65.193.64]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id p0JCRSZT031746; Wed, 19 Jan 2011 07:27:29 -0500 From: Amit Shah To: qemu list Date: Wed, 19 Jan 2011 17:57:14 +0530 Message-Id: <28eaf465316491884952f855f7bfc9dab597e6fb.1295439749.git.amit.shah@redhat.com> In-Reply-To: References: In-Reply-To: References: X-Scanned-By: MIMEDefang 2.68 on 10.5.11.22 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. Cc: Amit Shah , Juan Quintela , Gerd Hoffmann , Paul Brook Subject: [Qemu-devel] [PATCH 2/7] virtio-console: Remove unnecessary braces X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Remove unnecessary braces around a case statement. Signed-off-by: Amit Shah --- 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 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;