Revert "ODROIDC:hdmi: Try to read proper mode before video stream out"

This reverts commit 5162ac8869a36453a8918e6d16d657f3d864dd3f.

Change-Id: Ib42214ab2415fc6775734b4bda365edaebeea1ec
This commit is contained in:
Dongjin Kim
2014-11-21 16:01:58 +09:00
committed by Dongjin Kim
parent dae65c53d8
commit 350359d52d

View File

@@ -205,9 +205,6 @@ return value: 1, vout; 2, vout2;
const vinfo_t * hdmi_get_current_vinfo(void)
{
const vinfo_t *info;
int count = 5;
retry:
#ifdef CONFIG_AM_TV_OUTPUT2
if(get_cur_vout_index() == 2){
info = get_current_vinfo2();
@@ -221,12 +218,6 @@ retry:
#else
info = get_current_vinfo();
#endif
if ((info == NULL) && (--count > 0)) {
msleep(500);
goto retry;
}
return info;
}