]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
ARM: S3C64XX: DMA: struct s3c64xx_dma_buff lli fix.
authorJassi <jassi.brar@samsung.com>
Tue, 15 Sep 2009 10:01:18 +0000 (19:01 +0900)
committerBen Dooks <ben-linux@fluff.org>
Tue, 15 Sep 2009 23:50:06 +0000 (00:50 +0100)
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>
arch/arm/plat-s3c64xx/include/plat/dma-plat.h

index 0c30dd98672584c2035c6aaba759f2a835de4a6b..8f76a1e474d6c49091b5e51db89a4917e137c6af 100644 (file)
@@ -26,7 +26,7 @@ struct s3c64xx_dma_buff {
        struct s3c64xx_dma_buff *next;
 
        void                    *pw;
-       struct pl080_lli        *lli;
+       struct pl080s_lli       *lli;
        dma_addr_t               lli_dma;
 };