diff options
author | Timur Tabi <timur@freescale.com> | 2011-09-15 17:44:57 -0400 |
---|---|---|
committer | Florian Tobias Schandinat <FlorianSchandinat@gmx.de> | 2011-09-18 16:08:58 -0400 |
commit | 251b9b0d403f61f507155697a459038b2ee3336c (patch) | |
tree | 92bdd9263ae495f68251162577703116023cba78 /include/linux/fsl-diu-fb.h | |
parent | 3f78bbd1a256e04dfb486dbee0430e0ecad6d960 (diff) |
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/fsl-diu-fb.h')
-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 { | |||
162 | }; | 162 | }; |
163 | 163 | ||
164 | struct diu_addr { | 164 | struct diu_addr { |
165 | __u8 __iomem *vaddr; /* Virtual address */ | 165 | void *vaddr; /* Virtual address */ |
166 | dma_addr_t paddr; /* Physical address */ | 166 | dma_addr_t paddr; /* Physical address */ |
167 | __u32 offset; | 167 | __u32 offset; |
168 | }; | 168 | }; |