diff options
author | Sandor Yu <R01008@freescale.com> | 2012-08-09 10:55:20 +0800 |
---|---|---|
committer | Sandor Yu <R01008@freescale.com> | 2012-08-09 20:01:04 +0800 |
commit | 501b303e2214e7fe2251146d4ccdaa207f2030eb (patch) | |
tree | 39c9915f6b399fffb1cc1d705fe0233da6b16184 /drivers | |
parent | 7036e0af31452b7561e79578dd7def687b847dfd (diff) |
ENGR00215952 HDMI:'PHY PLL not locked' messages during boot
If using mxcfb1 for HDMI display, it will print
'PHY PLL not locked'.
Fixed it with setting HDMI default to blank state.
Signed-off-by: Sandor Yu <R01008@freescale.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/video/mxc_hdmi.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/video/mxc_hdmi.c b/drivers/video/mxc_hdmi.c index e53301dc41d4..87a1af1aeb8d 100644 --- a/drivers/video/mxc_hdmi.c +++ b/drivers/video/mxc_hdmi.c @@ -2113,6 +2113,9 @@ static int mxc_hdmi_disp_init(struct mxc_dispdrv_handle *disp, hdmi->dft_mode_set = false; + /* Setting HDMI default to blank state */ + hdmi->blank = FB_BLANK_POWERDOWN; + setting->dev_id = mxc_hdmi_ipu_id; setting->disp_id = mxc_hdmi_disp_id; setting->if_fmt = IPU_PIX_FMT_RGB24; |