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.rs205 ) -> Result<Self, E1000EPciError> { in new() argument
210 let bar = device.bar().ok_or(E1000EPciError::BarGetFailed)?; in new()
214 .ok_or(E1000EPciError::UnexpectedBarType)?; in new()
216 return Err(E1000EPciError::BarNotAllocated); in new()
219 return Err(E1000EPciError::UnexpectedBarSize); in new()
223 .ok_or(E1000EPciError::BarGetVaddrFailed)? in new()
600 pub fn e1000e_probe() -> Result<u64, E1000EPciError> { in e1000e_probe()
785 pub enum E1000EPciError { enum
803 impl From<PciError> for E1000EPciError { implementation