remove gpio reset #106

Merged
sb10q merged 1 commits from mwojcik/zynq-rs:no_reset into master 2023-10-20 17:41:39 +08:00
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)