mirror of
https://github.com/torvalds/linux.git
synced 2024-11-02 10:11:36 +00:00
b1b7509185
Get rid of register/unregister_early_external_interrupt() and clean up the code while at it. Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
18 lines
486 B
C
18 lines
486 B
C
/*
|
|
* Copyright IBM Corp. 1999,2010
|
|
* Author(s): Holger Smolinski <Holger.Smolinski@de.ibm.com>,
|
|
* Martin Schwidefsky <schwidefsky@de.ibm.com>,
|
|
*/
|
|
|
|
#ifndef _S390_EXTINT_H
|
|
#define _S390_EXTINT_H
|
|
|
|
#include <linux/types.h>
|
|
|
|
typedef void (*ext_int_handler_t)(unsigned int, unsigned int, unsigned long);
|
|
|
|
int register_external_interrupt(__u16 code, ext_int_handler_t handler);
|
|
int unregister_external_interrupt(__u16 code, ext_int_handler_t handler);
|
|
|
|
#endif /* _S390_EXTINT_H */
|