Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
awilliam
GitHub Repository: awilliam/linux-vfio
Path: blob/master/arch/s390/include/asm/airq.h
10819 views
1
/*
2
* include/asm-s390/airq.h
3
*
4
* Copyright IBM Corp. 2002,2007
5
* Author(s): Ingo Adlung <[email protected]>
6
* Cornelia Huck <[email protected]>
7
* Arnd Bergmann <[email protected]>
8
* Peter Oberparleiter <[email protected]>
9
*/
10
11
#ifndef _ASM_S390_AIRQ_H
12
#define _ASM_S390_AIRQ_H
13
14
typedef void (*adapter_int_handler_t)(void *, void *);
15
16
void *s390_register_adapter_interrupt(adapter_int_handler_t, void *, u8);
17
void s390_unregister_adapter_interrupt(void *, u8);
18
19
#endif /* _ASM_S390_AIRQ_H */
20
21