mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 09:41:44 +00:00
86cf29dc5a
Device tree support for omapdss is still some way in the future. In an effort to get a minimal DSS support for DT enabled kernel on selected OMAP4 boards, we'll go for a temporary solution: We will call the same non-DT omapdss setup code for OMAP4 SDP and Pandaboards from board-generic.c, thus enabling DSS for those boards. This patch moves the display setup code from board-4430sdp.c to dss-common.c. dss-common.c will be called by the board-4430sdp.c when running on non-DT kernel, and by board-generic.c when running on DT enabled kernel. Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com> Signed-off-by: Tony Lindgren <tony@atomide.com>
15 lines
373 B
C
15 lines
373 B
C
#ifndef __OMAP_DSS_COMMON__
|
|
#define __OMAP_DSS_COMMON__
|
|
|
|
/*
|
|
* NOTE: this is a transitional file to help with DT adaptation.
|
|
* This file will be removed when DSS supports DT.
|
|
*/
|
|
|
|
void __init omap4_panda_display_init(void);
|
|
void __init omap4_panda_display_init_of(void);
|
|
void __init omap_4430sdp_display_init(void);
|
|
void __init omap_4430sdp_display_init_of(void);
|
|
|
|
#endif
|