xref: /openbmc/linux/arch/s390/include/asm/airq.h (revision 0d456bad)
1 /*
2  *    Copyright IBM Corp. 2002, 2007
3  *    Author(s): Ingo Adlung <adlung@de.ibm.com>
4  *		 Cornelia Huck <cornelia.huck@de.ibm.com>
5  *		 Arnd Bergmann <arndb@de.ibm.com>
6  *		 Peter Oberparleiter <peter.oberparleiter@de.ibm.com>
7  */
8 
9 #ifndef _ASM_S390_AIRQ_H
10 #define _ASM_S390_AIRQ_H
11 
12 typedef void (*adapter_int_handler_t)(void *, void *);
13 
14 void *s390_register_adapter_interrupt(adapter_int_handler_t, void *, u8);
15 void s390_unregister_adapter_interrupt(void *, u8);
16 
17 #endif /* _ASM_S390_AIRQ_H */
18