diff options
author | Tomi Valkeinen | 2011-09-26 19:16:59 +0300 |
---|---|---|
committer | Tomi Valkeinen | 2011-09-30 16:17:32 +0300 |
commit | 212b0d50e2eb7fc60f7bea1e90e5867b5fc0647d (patch) | |
tree | 071b1950e9d9f7ecc041f66ef962c95ee2e29adb /include/video | |
parent | 162874d5f5fa8aac7ff406825f152abb22d3c6c2 (diff) |
OMAPDSS: remove vaddr from overlay info
overlay_info struct, used to configure overlays, currently includes both
physical and virtual addresses for the pixels. The vaddr was added to
support more exotic configurations where CPU would be used to update a
display, but it is not currently used and there has been no interest in
the feature. Using CPU to update a screen is also less interesting now
that OMAP4 has two LCD outputs.
This patch removes the vaddr field, and modifies the users of omapdss
accordingly. This makes the use of omapdss a bit simpler, as the user
doesn't need to think if it needs to give the vaddr.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'include/video')
-rw-r--r-- | include/video/omapdss.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/video/omapdss.h b/include/video/omapdss.h index a927eea8e9b9..2123fb2d51cb 100644 --- a/include/video/omapdss.h +++ b/include/video/omapdss.h @@ -358,7 +358,6 @@ struct omap_overlay_info { bool enabled; u32 paddr; - void __iomem *vaddr; u32 p_uv_addr; /* for NV12 format */ u16 screen_width; u16 width; |