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

View File

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