]> Git Repo - linux.git/commitdiff
ARM: OMAP: Fix warning in dma.c
authorTony Lindgren <[email protected]>
Tue, 8 May 2007 01:24:14 +0000 (18:24 -0700)
committerTony Lindgren <[email protected]>
Thu, 10 May 2007 22:14:52 +0000 (15:14 -0700)
Fix warning: 'offset' might be uninitialized

Signed-off-by: Tony Lindgren <[email protected]>
arch/arm/plat-omap/dma.c

index 2d86b106ff3e06b0dbc9ffe3a8e84b0945fb96b0..55a4d3be16b6bec23371ce45da4fece7e8f178b1 100644 (file)
@@ -747,7 +747,7 @@ int omap_set_dma_callback(int lch,
  */
 dma_addr_t omap_get_dma_src_pos(int lch)
 {
-       dma_addr_t offset;
+       dma_addr_t offset = 0;
 
        if (cpu_class_is_omap1())
                offset = (dma_addr_t) (OMAP1_DMA_CSSA_L_REG(lch) |
@@ -769,7 +769,7 @@ dma_addr_t omap_get_dma_src_pos(int lch)
  */
 dma_addr_t omap_get_dma_dst_pos(int lch)
 {
-       dma_addr_t offset;
+       dma_addr_t offset = 0;
 
        if (cpu_class_is_omap1())
                offset = (dma_addr_t) (OMAP1_DMA_CDSA_L_REG(lch) |
This page took 0.053349 seconds and 4 git commands to generate.