From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Mt3Ff-0005fw-UM for qemu-devel@nongnu.org; Wed, 30 Sep 2009 13:46:07 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Mt3Fb-0005aJ-3P for qemu-devel@nongnu.org; Wed, 30 Sep 2009 13:46:07 -0400 Received: from [199.232.76.173] (port=44806 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mt3Fa-0005aB-V8 for qemu-devel@nongnu.org; Wed, 30 Sep 2009 13:46:02 -0400 Received: from mx1.redhat.com ([209.132.183.28]:61367) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Mt3Fa-0006TL-5M for qemu-devel@nongnu.org; Wed, 30 Sep 2009 13:46:02 -0400 Date: Wed, 30 Sep 2009 19:44:03 +0200 From: "Michael S. Tsirkin" Message-ID: <20090930174403.GF1399@redhat.com> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Subject: [Qemu-devel] [PATCH 05/13] omap_dma: fix unbalanced { in commented out code List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Blue Swirl Cc: qemu-devel@nongnu.org Fix unbalanced {} in commented out code. Signed-off-by: Michael S. Tsirkin --- hw/omap_dma.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/hw/omap_dma.c b/hw/omap_dma.c index 6f5eaca..205d010 100644 --- a/hw/omap_dma.c +++ b/hw/omap_dma.c @@ -588,7 +588,7 @@ static void omap_dma_transfer_setup(struct soc_dma_ch_s *dma) #ifdef MULTI_REQ /* TODO: should all of this only be done if dma->update, and otherwise * inside omap_dma_transfer_generic below - check what's faster. */ - if (dma->update) { + if (dma->update) #endif /* If the channel is element synchronized, deactivate it */ @@ -668,7 +668,9 @@ static void omap_dma_transfer_setup(struct soc_dma_ch_s *dma) /* TODO: if the destination port is IMIF or EMIFF, set the dirty * bits on it. */ +#ifndef MULTI_REQ } +#endif omap_dma_interrupts_update(s); } -- 1.6.5.rc2