On Fri, Feb 15, 2019 at 12:23 AM Priit Laes plaes@plaes.org wrote:
err = anx6345_tx_initialization(anx6345);
if (err) {
DRM_ERROR("Failed transmitter initialization: %d\n", err);
goto err_poweroff;
You can move the whole err_poweroff section from below here and drop the goto.
Thanks, will do.