Searched refs:IoSysMap (Results 1 – 1 of 1) sorted by relevance
| /linux/rust/kernel/ |
| H A D | io.rs | 1501 pub enum IoSysMap<'a, T: ?Sized> { enum 1508 impl<T: ?Sized> Copy for IoSysMap<'_, T> {} implementation 1509 impl<T: ?Sized> Clone for IoSysMap<'_, T> { implementation 1516 impl<'a, T: ?Sized> From<Mmio<'a, T>> for IoSysMap<'a, T> { implementation 1519 IoSysMap::Io(value) in from() 1523 impl<'a, T: ?Sized> From<SysMem<'a, T>> for IoSysMap<'a, T> { implementation 1526 IoSysMap::Sys(value) in from() 1531 type View<'a, T: ?Sized + KnownSize> = IoSysMap<'a, T>; 1536 IoSysMap::Io(l) => MmioBackend::as_ptr(l), in as_ptr() 1537 IoSysMap::Sys(r) => SysMemBackend::as_ptr(r), in as_ptr() [all …]
|