From patchwork Tue Jan 22 10:20:09 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gerd Hoffmann X-Patchwork-Id: 214496 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id D54A52C007B for ; Tue, 22 Jan 2013 21:21:35 +1100 (EST) Received: from localhost ([::1]:43231 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Txayz-0007HB-W1 for incoming@patchwork.ozlabs.org; Tue, 22 Jan 2013 05:21:33 -0500 Received: from eggs.gnu.org ([208.118.235.92]:40584) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TxayJ-0005Vd-7q for qemu-devel@nongnu.org; Tue, 22 Jan 2013 05:20:56 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TxayD-0003tP-02 for qemu-devel@nongnu.org; Tue, 22 Jan 2013 05:20:51 -0500 Received: from mx1.redhat.com ([209.132.183.28]:39479) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TxayC-0003tF-Ni for qemu-devel@nongnu.org; Tue, 22 Jan 2013 05:20:44 -0500 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r0MAKfKZ010127 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 22 Jan 2013 05:20:44 -0500 Received: from rincewind.home.kraxel.org (ovpn-116-40.ams2.redhat.com [10.36.116.40]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id r0MAKACi027979; Tue, 22 Jan 2013 05:20:16 -0500 Received: by rincewind.home.kraxel.org (Postfix, from userid 500) id 6A02A40B16; Tue, 22 Jan 2013 11:20:10 +0100 (CET) From: Gerd Hoffmann To: qemu-devel@nongnu.org Date: Tue, 22 Jan 2013 11:20:09 +0100 Message-Id: <1358850010-3215-3-git-send-email-kraxel@redhat.com> In-Reply-To: <1358850010-3215-1-git-send-email-kraxel@redhat.com> References: <1358850010-3215-1-git-send-email-kraxel@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.23 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: Gerd Hoffmann Subject: [Qemu-devel] [PATCH 2/3] ohci: add missing break X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Gerd Hoffmann --- hw/usb/hcd-ohci.c | 1 + 1 file changed, 1 insertion(+) diff --git a/hw/usb/hcd-ohci.c b/hw/usb/hcd-ohci.c index 6a2f5f8..dd9967b 100644 --- a/hw/usb/hcd-ohci.c +++ b/hw/usb/hcd-ohci.c @@ -1736,6 +1736,7 @@ static void ohci_mem_write(void *opaque, /* PXA27x specific registers */ case 24: /* HcStatus */ ohci->hstatus &= ~(val & ohci->hmask); + break; case 25: /* HcHReset */ ohci->hreset = val & ~OHCI_HRESET_FSBIR;