Home
last modified time | relevance | path

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

/linux/rust/kernel/device/
H A Dproperty.rs37 pub struct FwNode(Opaque<bindings::fwnode_handle>); struct
39 impl FwNode { impl
79 struct FwNodeDisplayName<'a>(&'a FwNode); in display_name()
220 pub fn children<'a>(&'a self) -> impl Iterator<Item = ARef<FwNode>> + 'a { in children()
221 let mut prev: Option<ARef<FwNode>> = None; in children()
253 let next = unsafe { FwNode::from_raw(next) }; in children()
332 let _ = unsafe { FwNode::from_raw(self.0.fwnode) }; in drop()
363 unsafe impl crate::sync::aref::AlwaysRefCounted for FwNode { implementation
378 Borrowed(&'a FwNode),
379 Owned(ARef<FwNode>),
[all …]
/linux/rust/kernel/
H A Ddevice.rs479 pub fn fwnode(&self) -> Option<&property::FwNode> { in fwnode() argument