Home
last modified time | relevance | path

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

/linux/rust/kernel/io/
H A Dmem.rs20 MmioRaw, //
234 io: MmioRaw<SIZE>,
269 let io = MmioRaw::new(addr as usize, size)?; in ioremap()
/linux/rust/kernel/pci/
H A Dio.rs15 MmioRaw, //
151 io: MmioRaw<SIZE>,
187 let io = match MmioRaw::new(ioptr, len as usize) { in new()
/linux/rust/kernel/
H A Dio.rs42 pub struct MmioRaw<const SIZE: usize = 0> { struct
47 impl<const SIZE: usize> MmioRaw<SIZE> { implementation
142 pub struct Mmio<const SIZE: usize = 0>(MmioRaw<SIZE>);
785 pub unsafe fn from_raw(raw: &MmioRaw<SIZE>) -> &Self { in from_raw()