aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/plat-s3c64xx/include/plat/dma-plat.h
diff options
context:
space:
mode:
authorJassi <jassi.brar@samsung.com>2009-09-15 06:01:18 -0400
committerBen Dooks <ben-linux@fluff.org>2009-09-15 19:50:06 -0400
commit23c94b47be85207a8a9e0ac3ac89b16edf6356f0 (patch)
treeee3ad61f7294fd4f2cb0698befef1980f69f4584 /arch/arm/plat-s3c64xx/include/plat/dma-plat.h
parent5e49bc4d9e982bbfdaf7d6cf8bd96e43bd9f7db6 (diff)
ARM: S3C64XX: DMA: struct s3c64xx_dma_buff lli fix.
Correct the lli structure in struct s3c64xx_dma_buff which should have been 'struct pl080s_lli' (samsung specific) instead of the generic version 'struct pl080_lli' Signed-Off-by: Jassi <jassi.brar@samsung.com> [ben-linux@fluff.org: Edited description and subject fields] Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'arch/arm/plat-s3c64xx/include/plat/dma-plat.h')
-rw-r--r--arch/arm/plat-s3c64xx/include/plat/dma-plat.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/plat-s3c64xx/include/plat/dma-plat.h b/arch/arm/plat-s3c64xx/include/plat/dma-plat.h
index 0c30dd98672..8f76a1e474d 100644
--- a/arch/arm/plat-s3c64xx/include/plat/dma-plat.h
+++ b/arch/arm/plat-s3c64xx/include/plat/dma-plat.h
@@ -26,7 +26,7 @@ struct s3c64xx_dma_buff {
26 struct s3c64xx_dma_buff *next; 26 struct s3c64xx_dma_buff *next;
27 27
28 void *pw; 28 void *pw;
29 struct pl080_lli *lli; 29 struct pl080s_lli *lli;
30 dma_addr_t lli_dma; 30 dma_addr_t lli_dma;
31}; 31};
32 32