mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-26 13:05:08 +07:00
dbdb4e9f3f
This follows the x86 changes for tidying up the page fault error paths. We'll build on top of this for _32/_64 unification. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
16 lines
254 B
C
16 lines
254 B
C
#ifndef __ASM_SH_KDEBUG_H
|
|
#define __ASM_SH_KDEBUG_H
|
|
|
|
/* Grossly misnamed. */
|
|
enum die_val {
|
|
DIE_TRAP,
|
|
DIE_NMI,
|
|
DIE_OOPS,
|
|
DIE_BREAKPOINT,
|
|
DIE_SSTEP,
|
|
};
|
|
|
|
extern void printk_address(unsigned long address, int reliable);
|
|
|
|
#endif /* __ASM_SH_KDEBUG_H */
|