diff options
author | Tony Lindgren <tony@atomide.com> | 2006-09-25 12:41:34 +0300 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2006-09-25 12:41:34 +0300 |
commit | 123e9a5573098dbb10194c18d6d575620d0e94f3 (patch) | |
tree | 6ee92a011b1f48b2a6b6a48915df7762b4f8e741 /include/asm-arm/arch-omap/dma.h | |
parent | f37e4580c409e290f6e482007c3573cdb4470bf9 (diff) | |
download | talos-op-linux-123e9a5573098dbb10194c18d6d575620d0e94f3.tar.gz talos-op-linux-123e9a5573098dbb10194c18d6d575620d0e94f3.zip |
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/dma.h')
-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 { int src_port; /* Only on OMAP1 REVISIT: Is this needed? */ int src_amode; /* constant , post increment, indexed , double indexed */ - int src_start; /* source address : physical */ + unsigned long src_start; /* source address : physical */ int src_ei; /* source element index */ int src_fi; /* source frame index */ int dst_port; /* Only on OMAP1 REVISIT: Is this needed? */ int dst_amode; /* constant , post increment, indexed , double indexed */ - int dst_start; /* source address : physical */ + unsigned long dst_start; /* source address : physical */ int dst_ei; /* source element index */ int dst_fi; /* source frame index */ |