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

Commit 251b9b0d authored by Timur Tabi's avatar Timur Tabi Committed by Florian Tobias Schandinat
Browse files

drivers/video: fsl-diu-fb: the video buffer is not I/O memory



The video buffer is not uncached memory-mapped I/O, so don't tag the virtual
address as __iomem.  It's also not a u8*.

Signed-off-by: default avatarTimur Tabi <timur@freescale.com>
Signed-off-by: default avatarFlorian Tobias Schandinat <FlorianSchandinat@gmx.de>
parent 3f78bbd1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -162,7 +162,7 @@ struct diu_hw {
};

struct diu_addr {
	__u8 __iomem *vaddr;	/* Virtual address */
	void *vaddr;		/* Virtual address */
	dma_addr_t paddr;	/* Physical address */
	__u32 	   offset;
};