diff options
author | Tony Lindgren <tony@atomide.com> | 2006-09-25 05:41:34 -0400 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2006-09-25 05:41:34 -0400 |
commit | 123e9a5573098dbb10194c18d6d575620d0e94f3 (patch) | |
tree | 6ee92a011b1f48b2a6b6a48915df7762b4f8e741 /include/asm-arm/arch-omap | |
parent | f37e4580c409e290f6e482007c3573cdb4470bf9 (diff) |
ARM: OMAP: DMA source and destination addresses are unsigned
Also export some omap24xx specific DMA functions.
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'include/asm-arm/arch-omap')
-rw-r--r-- | include/asm-arm/arch-omap/dma.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-arm/arch-omap/dma.h b/include/asm-arm/arch-omap/dma.h index 1b1b02307e77..33cd48d9a853 100644 --- a/include/asm-arm/arch-omap/dma.h +++ b/include/asm-arm/arch-omap/dma.h | |||
@@ -338,13 +338,13 @@ struct omap_dma_channel_params { | |||
338 | 338 | ||
339 | int src_port; /* Only on OMAP1 REVISIT: Is this needed? */ | 339 | int src_port; /* Only on OMAP1 REVISIT: Is this needed? */ |
340 | int src_amode; /* constant , post increment, indexed , double indexed */ | 340 | int src_amode; /* constant , post increment, indexed , double indexed */ |
341 | int src_start; /* source address : physical */ | 341 | unsigned long src_start; /* source address : physical */ |
342 | int src_ei; /* source element index */ | 342 | int src_ei; /* source element index */ |
343 | int src_fi; /* source frame index */ | 343 | int src_fi; /* source frame index */ |
344 | 344 | ||
345 | int dst_port; /* Only on OMAP1 REVISIT: Is this needed? */ | 345 | int dst_port; /* Only on OMAP1 REVISIT: Is this needed? */ |
346 | int dst_amode; /* constant , post increment, indexed , double indexed */ | 346 | int dst_amode; /* constant , post increment, indexed , double indexed */ |
347 | int dst_start; /* source address : physical */ | 347 | unsigned long dst_start; /* source address : physical */ |
348 | int dst_ei; /* source element index */ | 348 | int dst_ei; /* source element index */ |
349 | int dst_fi; /* source frame index */ | 349 | int dst_fi; /* source frame index */ |
350 | 350 | ||