diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2012-11-05 13:14:18 (GMT) |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2012-11-07 21:26:51 (GMT) |
commit | 86cf29dc5a595957ab02068fcd39c57009763a8b (patch) | |
tree | f7e1e76176a08c4516cfdfbe57c55ad48a431c19 /arch/arm/mach-omap2/dss-common.h | |
parent | 0191bf368fd95ecd4f83e62b0ad6de12048b14bf (diff) | |
download | linux-86cf29dc5a595957ab02068fcd39c57009763a8b.tar.xz |
OMAP: omap4sdp: move display init from board file to dss-common.c
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>
Diffstat (limited to 'arch/arm/mach-omap2/dss-common.h')
-rw-r--r-- | arch/arm/mach-omap2/dss-common.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/dss-common.h b/arch/arm/mach-omap2/dss-common.h index 6fac6a8..915f6ff 100644 --- a/arch/arm/mach-omap2/dss-common.h +++ b/arch/arm/mach-omap2/dss-common.h @@ -8,5 +8,7 @@ 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 |