Run a propagation phase after connect

This commit is contained in:
Rodrigo Arias 2023-02-21 15:37:43 +01:00 committed by Rodrigo Arias Mallo
parent 55c8af6b4d
commit 7731c090ee

View File

@ -82,6 +82,13 @@ emu_connect(struct emu *emu)
return -1;
}
/* Run a propagation phase so we clean all the dirty channels, in
* particular the select channel of the muxes */
if (bay_propagate(&emu->bay) != 0) {
err("bay_propagate failed");
return -1;
}
return 0;
}