瀏覽代碼

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>
Jassi 16 年之前
父節點
當前提交
23c94b47be
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      arch/arm/plat-s3c64xx/include/plat/dma-plat.h

+ 1 - 1
arch/arm/plat-s3c64xx/include/plat/dma-plat.h

@@ -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;
 };