mirror of
https://github.com/torvalds/linux.git
synced 2026-09-25 21:21:09 -04:00
That was put in place for sparc64, and blackfin also used it for some time; sparc64 no longer uses those, and blackfin is dead. As there are no more users, remove preflow handlers. Signed-off-by: Valentin Schneider <[email protected]> Signed-off-by: Thomas Gleixner <[email protected]> Link: https://lkml.kernel.org/r/[email protected]
15 lines
300 B
C
15 lines
300 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;
|
|
struct irq_data;
|
|
typedef void (*irq_flow_handler_t)(struct irq_desc *desc);
|
|
|
|
#endif
|