Skip to content
Snippets Groups Projects
Commit 85933d2b authored by Troy Kisky's avatar Troy Kisky
Browse files

mxc_ipuv3_fb: add board_video_enable callback

parent ea1440a2
No related branches found
No related tags found
No related merge requests found
......@@ -603,10 +603,17 @@ void ipuv3_fb_shutdown(void)
g_dp_in_use = 0;
}
static void __board_video_enable(void)
{
}
void board_video_enable(void)
__attribute__((weak, alias("__board_video_enable")));
void *ipuv3_fb_init2(void)
{
mxcfb_probe(gpixfmt, gdisp, gmode);
board_video_enable();
debug("Framebuffer at 0x%x\n", (unsigned int)panel.frameAdrs);
return (void *)&panel;
}
......
......@@ -48,4 +48,6 @@ struct mxcfb_gamma {
int slopek[16];
};
void board_video_enable(void);
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment