mirror of
git://git.yoctoproject.org/linux-yocto.git
synced 2025-07-05 13:25:20 +02:00

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
|