rk fb: move support_uboot_display from rk_fb.h to rk_fb.c

This commit is contained in:
hjc
2014-03-26 09:22:09 +08:00
parent fff138fbe8
commit 6f36ca9184
2 changed files with 4 additions and 6 deletions

View File

@@ -65,6 +65,10 @@ EXPORT_SYMBOL(video_data_to_mirroring);
static struct rk_fb_trsm_ops *trsm_lvds_ops;
static struct rk_fb_trsm_ops *trsm_edp_ops;
static struct rk_fb_trsm_ops *trsm_mipi_ops;
__weak int support_uboot_display(void)
{
return 0;
}
int rk_fb_trsm_ops_register(struct rk_fb_trsm_ops *ops, int type)
{

View File

@@ -549,12 +549,6 @@ extern int rk_disp_pwr_disable(struct rk_lcdc_driver *dev_drv);
extern bool is_prmry_rk_lcdc_registered(void);
extern int rk_fb_prase_timing_dt(struct device_node *np,
struct rk_screen *screen);
__weak int support_uboot_display(void)
{
return 0;
}
extern int rk_disp_prase_timing_dt(struct rk_lcdc_driver *dev_drv);
extern int rk_fb_dpi_open(bool open);