Home
last modified time | relevance | path

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

/DragonOS/kernel/src/driver/net/e1000e/
H A De1000e.rs204 ) -> Result<Self, E1000EPciError> { in new() argument
209 let bar = device.bar().ok_or(E1000EPciError::BarGetFailed)?.read(); in new()
213 .ok_or(E1000EPciError::UnexpectedBarType)?; in new()
215 return Err(E1000EPciError::BarNotAllocated); in new()
218 return Err(E1000EPciError::UnexpectedBarSize); in new()
222 .ok_or(E1000EPciError::BarGetVaddrFailed)? in new()
599 pub fn e1000e_probe() -> Result<u64, E1000EPciError> { in e1000e_probe()
790 pub enum E1000EPciError { enum
808 impl From<PciError> for E1000EPciError { implementation