remove gpio reset

pull/106/head
mwojcik 2023-10-18 17:33:19 +08:00
parent c15b54f92b
commit 0106430805
3 changed files with 0 additions and 5 deletions

View File

@ -18,8 +18,6 @@ impl ErrorLED {
.pullup(true)
.disable_rcvr(true)
);
// reset
slcr.gpio_rst_ctrl.reset_gpio();
});
Self::error_led_common(0xFFFF - 0x0080)

View File

@ -508,7 +508,6 @@ impl PhyRst {
.pullup(true)
.disable_rcvr(true)
);
slcr.gpio_rst_ctrl.reset_gpio();
});
Self::eth_reset_common(0xFFFF - 0x8000)
}

View File

@ -53,8 +53,6 @@ impl I2c {
.pullup(false)
.disable_rcvr(true)
);
// Reset
slcr.gpio_rst_ctrl.reset_gpio();
});
Self::i2c_common(0xFFFF - 0x000C, 0xFFFF - 0x0002)