init the IT6613 only once if HDMI is initiated

This commit is contained in:
borti4938 2016-04-16 21:29:32 +02:00
parent de0f98ea32
commit 7b6c67cc4d

View File

@ -1262,7 +1262,8 @@ int init_hw()
// init always is HDMI mode (fixes yellow screen bug)
TX_enable(TX_HDMI);
TX_enable(cm.cc.tx_mode);
if (cm.cc.tx_mode)
TX_enable(cm.cc.tx_mode);
return 0;
}