mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-01 10:42:11 +00:00
9676635685
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
15 lines
284 B
C
15 lines
284 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _LINUX_IRQHANDLER_H
|
|
#define _LINUX_IRQHANDLER_H
|
|
|
|
/*
|
|
* Interrupt flow handler typedefs are defined here to avoid circular
|
|
* include dependencies.
|
|
*/
|
|
|
|
struct irq_desc;
|
|
|
|
typedef void (*irq_flow_handler_t)(struct irq_desc *desc);
|
|
|
|
#endif
|