versatile-fpga.h 314 B

12345678910111213
  1. #ifndef PLAT_FPGA_IRQ_H
  2. #define PLAT_FPGA_IRQ_H
  3. struct device_node;
  4. struct pt_regs;
  5. void fpga_handle_irq(struct pt_regs *regs);
  6. void fpga_irq_init(void __iomem *, const char *, int, int, u32,
  7. struct device_node *node);
  8. int fpga_irq_of_init(struct device_node *node,
  9. struct device_node *parent);
  10. #endif