forked from mirrors/linux
		
	 8fa88a88d5
			
		
	
	
		8fa88a88d5
		
	
	
	
	
		
			
			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 <valentin.schneider@arm.com> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Link: https://lkml.kernel.org/r/20200703155645.29703-3-valentin.schneider@arm.com
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			300 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			14 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
 |