Home
last modified time | relevance | path

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

/linux/rust/kernel/
H A Dio.rs138 pub struct Mmio<const SIZE: usize = 0>(MmioRaw<SIZE>); struct
491 impl<const SIZE: usize> IoCapable<u8> for Mmio<SIZE> {} implementation
492 impl<const SIZE: usize> IoCapable<u16> for Mmio<SIZE> {} implementation
493 impl<const SIZE: usize> IoCapable<u32> for Mmio<SIZE> {} implementation
497 impl<const SIZE: usize> IoCapable<u64> for Mmio<SIZE> {} implementation
499 impl<const SIZE: usize> Io for Mmio<SIZE> { implementation
553 impl<const SIZE: usize> IoKnownSize for Mmio<SIZE> { implementation
557 impl<const SIZE: usize> Mmio<SIZE> { impl
/linux/rust/kernel/pci/
H A Dio.rs16 Mmio,
280 type Target = Mmio<SIZE>;
284 unsafe { Mmio::from_raw(&self.io) } in deref()