genirq: Remove unneeded forward declaration

The protoype of irq_flow_handler_t is independent of irq_data, so remove
unneeded forward declaration.

Signed-off-by: Dawei Li <dawei.li@shingroup.cn>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/r/20240122085716.2999875-4-dawei.li@shingroup.cn
This commit is contained in:
Dawei Li 2024-01-22 16:57:14 +08:00 committed by Thomas Gleixner
parent d22083a5f0
commit 9676635685
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@
*/
struct irq_desc;
struct irq_data;
typedef void (*irq_flow_handler_t)(struct irq_desc *desc);
#endif