clippy: allow missing safety doc (rtfm)

master
Robert Jördens 2019-11-24 15:04:29 +01:00
parent bda0ca26fb
commit 8c2c0a2027
2 changed files with 9 additions and 0 deletions

View File

@ -328,6 +328,14 @@ impl Device {
Self{ rx: RxRing::new(), tx: TxRing::new() }
}
// Initialize the ethernet peripherals
//
// # Safety
//
// This iis transitively unsafe since it sets potentially
// unsafe register values. Might ultimately be safe if the values
// are correct.
//
// After `init` is called, `Device` shall not be moved.
pub unsafe fn init(&mut self, mac: EthernetAddress,
eth_mac: &pac::ETHERNET_MAC,

View File

@ -1,4 +1,5 @@
#![deny(warnings)]
#![allow(clippy::missing_safety_doc)]
#![no_std]
#![no_main]