Searched refs:compatible_nodes (Results 1 – 6 of 6) sorted by relevance
36 fdt.compatible_nodes(cstr!("restricted-dma-pool"))?.next().ok_or(FdtError::NotFound)?; in new_from_fdt()
271 let mut cpu_nodes = fdt.compatible_nodes(cstr!("arm,armv8"))?;311 let mut nodes = fdt.compatible_nodes(cstr!("virtual,android-v-only-cpufreq"))?; in read_vcpufreq_info()550 fdt.compatible_nodes(cstr!("pci-host-cam-generic"))?.next().ok_or(FdtError::NotFound)?; in read_pci_info_from()750 let mut serial_nodes = fdt.compatible_nodes(cstr!("ns16550a"))?; in read_serial_info_from()833 let node = fdt.compatible_nodes(cstr!("arm,gic-v3"))?.next().ok_or(FdtError::NotFound)?; in patch_gic()859 let node = fdt.compatible_nodes(cstr!("arm,armv8-timer"))?.next().ok_or(FdtError::NotFound)?; in patch_timer()
916 for compatible in fdt.compatible_nodes(Self::PVIOMMU_COMPATIBLE)? { in parse_pviommus()1228 for pviommu in fdt.compatible_nodes(cstr!("pkvm,pviommu"))? { in collect_pviommus()
130 fdt.compatible_nodes(CStr::from_bytes_with_nul(b"pci-host-cam-generic\0").unwrap()) in pci_node()
175 for c in reader.compatible_nodes(compatible).unwrap() { in check_fdt()
741 pub fn compatible_nodes<'a>(&'a self, compatible: &'a CStr) -> Result<CompatibleIterator<'a>> { in compatible_nodes() method