fix some compilation warnings

tcp-recv-fnmut
Sebastien Bourdeauducq 2020-07-19 15:39:08 +08:00
parent 7b78bc0494
commit f8785c3f07
2 changed files with 2 additions and 5 deletions

View File

@ -3,8 +3,7 @@
extern crate alloc;
use alloc::{borrow::ToOwned, collections::BTreeMap, format};
use core::task::Poll;
use alloc::collections::BTreeMap;
use libasync::{
delay,
smoltcp::{Sockets, TcpStream},
@ -17,7 +16,6 @@ use libboard_zynq::{
print, println,
sdio::sd_card::SdCard,
smoltcp::{
self,
iface::{EthernetInterfaceBuilder, NeighborCache, Routes},
time::Instant,
wire::{EthernetAddress, IpAddress, IpCidr},
@ -112,7 +110,7 @@ pub fn main_core0() {
}
println!("");
}
let mut flash = flash.stop();
let _flash = flash.stop();
let timer = libboard_zynq::timer::GlobalTimer::start();

View File

@ -1,4 +1,3 @@
use super::clocks::Clocks;
use super::time::Milliseconds;
use crate::slcr;
use embedded_hal::timer::CountDown;