Home
last modified time | relevance | path

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

/DragonOS/kernel/src/driver/pci/
H A Dpci_irq.rs230 if let Some(irq_type) = self.irq_type_mut() { in irq_enable()
231 match *irq_type { in irq_enable()
252 if let Some(irq_type) = self.irq_type_mut() { in msix_enable()
253 match *irq_type { in msix_enable()
283 if let Some(irq_type) = self.irq_type_mut() { in msi_enable()
284 match *irq_type { in msi_enable()
327 if let Some(irq_type) = self.irq_type_mut() { in irq_install()
328 match *irq_type { in irq_install()
350 if let Some(irq_type) = self.irq_type_mut() { in msi_install()
351 match *irq_type { in msi_install()
[all …]
H A Dpci.rs447 pub irq_type: IrqType, field
506 Some(&mut self.irq_type) in irq_type_mut()
519 pub irq_type: IrqType, field
570 Some(&mut self.irq_type) in irq_type_mut()
798 irq_type: IrqType::Unused, in pci_read_general_device_header()
868 irq_type: IrqType::Unused, in pci_read_pci_to_pci_bridge_header()
/DragonOS/kernel/src/exception/
H A Dsysfs.rs213 let irq_type = if irq_desc.irq_data().is_level_type() { in show() localVariable
219 return sysfs_emit_str(buf, &format!("{}\n", irq_type)); in show()