diff options
author | Timur Tabi <timur@freescale.com> | 2011-09-15 16:44:57 -0500 |
---|---|---|
committer | Florian Tobias Schandinat <FlorianSchandinat@gmx.de> | 2011-09-18 20:08:58 +0000 |
commit | 251b9b0d403f61f507155697a459038b2ee3336c (patch) | |
tree | 92bdd9263ae495f68251162577703116023cba78 /include/linux | |
parent | 3f78bbd1a256e04dfb486dbee0430e0ecad6d960 (diff) | |
download | linux-stable-251b9b0d403f61f507155697a459038b2ee3336c.tar.gz linux-stable-251b9b0d403f61f507155697a459038b2ee3336c.tar.bz2 linux-stable-251b9b0d403f61f507155697a459038b2ee3336c.zip |
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: Timur Tabi <timur@freescale.com>
Signed-off-by: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/fsl-diu-fb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/fsl-diu-fb.h b/include/linux/fsl-diu-fb.h index 5ebffa69a0f6..35ac0c53975c 100644 --- a/include/linux/fsl-diu-fb.h +++ b/include/linux/fsl-diu-fb.h @@ -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; }; |