mirror of
https://github.com/joel16/android_kernel_sony_msm8994_rework.git
synced 2025-01-14 04:44:06 +00:00
ARM: OMAP: Fix warning in dma.c
Fix warning: 'offset' might be uninitialized Signed-off-by: Tony Lindgren <tony@atomide.com>
This commit is contained in:
parent
de5603748a
commit
0695de3257
@ -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) |
|
||||
|
Loading…
x
Reference in New Issue
Block a user