Init LPT before Network to fix PLIP mode.

This commit is contained in:
Yishay Vadai
2023-09-23 20:57:33 +03:00
parent 491cdda458
commit 5c9509d51d

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();