Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 23c94b47 authored by Jassi's avatar Jassi Committed by Ben Dooks
Browse files

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: default avatarJassi <jassi.brar@samsung.com>
[ben-linux@fluff.org: Edited description and subject fields]

Signed-off-by: default avatarBen Dooks <ben-linux@fluff.org>
parent 5e49bc4d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
};