Searched refs:E1000EPciError (Results 1 – 1 of 1) sorted by relevance
206 ) -> Result<Self, E1000EPciError> { in new() argument211 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 { enum809 impl From<PciError> for E1000EPciError { implementation