Merge pull request #3706 from yishayv/plip_fix

Init LPT before Network to fix PLIP mode.
This commit is contained in:
Miran Grča
2023-09-24 18:35:15 +02:00
committed by GitHub

View File

@@ -1071,11 +1071,13 @@ pc_reset_hard_init(void)
/* Reset and reconfigure the Sound Card layer. */
sound_card_reset();
/* Initialize parallel devices. */
/* note: PLIP LPT side has to be initialized before the network side */
lpt_devices_init();
/* Reset and reconfigure the Network Card layer. */
network_reset();
lpt_devices_init();
/* Reset and reconfigure the serial ports. */
serial_standalone_init();
serial_passthrough_init();