Skip to content

Commit

Permalink
drivers/video: fsl-diu-fb: the video buffer is not I/O memory
Browse files Browse the repository at this point in the history
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: Timur Tabi <timur@freescale.com>
Signed-off-by: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
  • Loading branch information
Timur Tabi authored and Florian Tobias Schandinat committed Sep 18, 2011
1 parent 3f78bbd commit 251b9b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/linux/fsl-diu-fb.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};
Expand Down

0 comments on commit 251b9b0

Please sign in to comment.