forked from mirrors/linux
		
	 9676635685
			
		
	
	
		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
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			284 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			14 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
 |