diff options
author | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2011-07-24 12:48:24 +0400 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2011-07-24 12:48:21 +0400 |
commit | fdb204d1a7746a90b0d8a8665bf59af98c8c366a (patch) | |
tree | 6251aa44e991ecab4a29dd97cc02483fb7293794 /arch/s390/kernel/entry.h | |
parent | f7850c92884b40915001e332a0a33ed4f10158e8 (diff) | |
download | linux-fdb204d1a7746a90b0d8a8665bf59af98c8c366a.tar.xz |
[S390] cleanup program check handler prototypes
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390/kernel/entry.h')
-rw-r--r-- | arch/s390/kernel/entry.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/arch/s390/kernel/entry.h b/arch/s390/kernel/entry.h index 17a6f83a2d67..66729eb7bbc5 100644 --- a/arch/s390/kernel/entry.h +++ b/arch/s390/kernel/entry.h @@ -5,10 +5,9 @@ #include <linux/signal.h> #include <asm/ptrace.h> -typedef void pgm_check_handler_t(struct pt_regs *, long, unsigned long); -extern pgm_check_handler_t *pgm_check_table[128]; -pgm_check_handler_t do_protection_exception; -pgm_check_handler_t do_dat_exception; +void do_protection_exception(struct pt_regs *, long, unsigned long); +void do_dat_exception(struct pt_regs *, long, unsigned long); +void do_asce_exception(struct pt_regs *, long, unsigned long); extern int sysctl_userprocess_debug; |