]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/s390/include/asm/kdebug.h
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[mirror_ubuntu-bionic-kernel.git] / arch / s390 / include / asm / kdebug.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
4ba069b8
MG
2#ifndef _S390_KDEBUG_H
3#define _S390_KDEBUG_H
4
5/*
6 * Feb 2006 Ported to s390 <grundym@us.ibm.com>
7 */
4ba069b8
MG
8
9struct pt_regs;
10
4ba069b8
MG
11enum die_val {
12 DIE_OOPS = 1,
13 DIE_BPT,
14 DIE_SSTEP,
15 DIE_PANIC,
16 DIE_NMI,
17 DIE_DIE,
18 DIE_NMIWATCHDOG,
19 DIE_KERNELDEBUG,
20 DIE_TRAP,
21 DIE_GPF,
22 DIE_CALL,
23 DIE_NMI_IPI,
4ba069b8
MG
24};
25
aa33c8cb 26extern void die(struct pt_regs *, const char *);
2b67fc46 27
4ba069b8 28#endif