Home
last modified time | relevance | path

Searched refs:E1000EPciError (Results 1 – 1 of 1) sorted by relevance

/DragonOS-0.1.9/kernel/src/driver/net/e1000e/
De1000e.rs206 ) -> Result<Self, E1000EPciError> { in new() argument
211 let bar = device.bar().ok_or(E1000EPciError::BarGetFailed)?; in new()
215 .ok_or(E1000EPciError::UnexpectedBarType)?; in new()
217 return Err(E1000EPciError::BarNotAllocated); in new()
220 return Err(E1000EPciError::UnexpectedBarSize); in new()
224 .ok_or(E1000EPciError::BarGetVaddrFailed)? in new()
607 pub fn e1000e_probe() -> Result<u64, E1000EPciError> { in e1000e_probe()
791 pub enum E1000EPciError { enum
809 impl From<PciError> for E1000EPciError { implementation