Skip to content

Commit

Permalink
omap_dma: fix unbalanced { in commented out code
Browse files Browse the repository at this point in the history
Fix unbalanced {} in commented out code.

Signed-off-by: Michael S. Tsirkin <[email protected]>
Signed-off-by: Blue Swirl <[email protected]>
  • Loading branch information
mstsirkin authored and blueswirl committed Sep 30, 2009
1 parent a0d98a7 commit f90554a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion hw/omap_dma.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down Expand Up @@ -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);
}
Expand Down

0 comments on commit f90554a

Please sign in to comment.