1
0
mirror of https://github.com/marqs85/ossc.git synced 2024-06-17 14:29:27 +00:00

init the IT6613 only once if HDMI is initiated

This commit is contained in:
borti4938 2016-04-16 21:29:32 +02:00 committed by marqs
parent 2de05ca742
commit 64b661c7e2

View File

@ -1332,9 +1332,10 @@ int init_hw()
if (!(IORD_ALTERA_AVALON_PIO_DATA(PIO_1_BASE) & PB1_BIT)) if (!(IORD_ALTERA_AVALON_PIO_DATA(PIO_1_BASE) & PB1_BIT))
setup_rc(); setup_rc();
// init always is HDMI mode (fixes yellow screen bug) // init always in HDMI mode (fixes yellow screen bug)
TX_enable(TX_HDMI); TX_enable(TX_HDMI);
TX_enable(tc.tx_mode); if (tc.tx_mode == TX_DVI)
TX_enable(tc.tx_mode);
return 0; return 0;
} }