M7350/kernel/arch/arm/plat-versatile/include/plat/fpga-irq.h

13 lines
207 B
C
Raw Normal View History

2024-09-09 08:52:07 +00:00
#ifndef PLAT_FPGA_IRQ_H
#define PLAT_FPGA_IRQ_H
struct fpga_irq_data {
void __iomem *base;
unsigned int irq_start;
struct irq_chip chip;
};
void fpga_irq_init(int, u32, struct fpga_irq_data *);
#endif