irq.h 217 B

1234567891011121314
  1. #ifndef _irq_h
  2. #define _irq_h
  3. struct irq_t {
  4. int irq;
  5. char *desc; /* IRQ text description */
  6. };
  7. #define SYSFS_PCI_PATH "/sys/bus/pci/devices"
  8. /* IRQ list functions */
  9. int irqs_populate(lub_list_t *irqs);
  10. #endif