diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2011-03-02 05:29:27 -0500 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2011-03-11 08:46:27 -0500 |
commit | 42c9dee82129d965bc8ca02170150817317c0135 (patch) | |
tree | f90404dfff058d84033171467248be665ec6d053 /drivers/video/omap2/dss/dss.h | |
parent | 1bb478350670fadf708d3cbd6137c32dfbe3fd5f (diff) |
OMAP: DSS2: Remove FB_OMAP_BOOTLOADER_INIT support
FB_OMAP_BOOTLOADER_INIT does not work, and it was only partially
implemented for SDI.
This patch removes support for FB_OMAP_BOOTLOADER_INIT to clean up the
code and to remove any assumptions that FB_OMAP_BOOTLOADER_INIT would
work.
Proper implementation is much more complex, requiring early boot time
register and clock handling to keep the DSS running.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video/omap2/dss/dss.h')
-rw-r--r-- | drivers/video/omap2/dss/dss.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/omap2/dss/dss.h b/drivers/video/omap2/dss/dss.h index 20590fb53c91..069fcc72331c 100644 --- a/drivers/video/omap2/dss/dss.h +++ b/drivers/video/omap2/dss/dss.h | |||
@@ -251,11 +251,11 @@ int dss_calc_clock_div(bool is_tft, unsigned long req_pck, | |||
251 | 251 | ||
252 | /* SDI */ | 252 | /* SDI */ |
253 | #ifdef CONFIG_OMAP2_DSS_SDI | 253 | #ifdef CONFIG_OMAP2_DSS_SDI |
254 | int sdi_init(bool skip_init); | 254 | int sdi_init(void); |
255 | void sdi_exit(void); | 255 | void sdi_exit(void); |
256 | int sdi_init_display(struct omap_dss_device *display); | 256 | int sdi_init_display(struct omap_dss_device *display); |
257 | #else | 257 | #else |
258 | static inline int sdi_init(bool skip_init) | 258 | static inline int sdi_init(void) |
259 | { | 259 | { |
260 | return 0; | 260 | return 0; |
261 | } | 261 | } |