runtime: fix a typo.

pull/842/head
whitequark 2017-10-30 08:48:35 +00:00
parent a66450b0af
commit 7f32ae31de
1 changed files with 2 additions and 2 deletions

View File

@ -96,8 +96,8 @@ impl EthernetStatistics {
pub fn new() -> Self {
unsafe {
EthernetStatistics {
rx_errors: 0,/*csr::ethmac::crc_errors_read()*/,
rx_dropped: 0,/*csr::ethmac::sram_writer_errors_read()*/,
rx_errors: 0/*csr::ethmac::crc_errors_read()*/,
rx_dropped: 0/*csr::ethmac::sram_writer_errors_read()*/,
}
}
}