diff options
Diffstat (limited to 'drivers/video/omap2/omapfb/omapfb.h')
-rw-r--r-- | drivers/video/omap2/omapfb/omapfb.h | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/drivers/video/omap2/omapfb/omapfb.h b/drivers/video/omap2/omapfb/omapfb.h index e12d384ea520..c0bdc9b54ecf 100644 --- a/drivers/video/omap2/omapfb/omapfb.h +++ b/drivers/video/omap2/omapfb/omapfb.h | |||
@@ -181,13 +181,10 @@ static inline void omapfb_unlock(struct omapfb2_device *fbdev) | |||
181 | static inline int omapfb_overlay_enable(struct omap_overlay *ovl, | 181 | static inline int omapfb_overlay_enable(struct omap_overlay *ovl, |
182 | int enable) | 182 | int enable) |
183 | { | 183 | { |
184 | struct omap_overlay_info info; | 184 | if (enable) |
185 | 185 | return ovl->enable(ovl); | |
186 | ovl->get_overlay_info(ovl, &info); | 186 | else |
187 | if (info.enabled == enable) | 187 | return ovl->disable(ovl); |
188 | return 0; | ||
189 | info.enabled = enable; | ||
190 | return ovl->set_overlay_info(ovl, &info); | ||
191 | } | 188 | } |
192 | 189 | ||
193 | static inline struct omapfb2_mem_region * | 190 | static inline struct omapfb2_mem_region * |