kdebug.h 303 B

123456789101112131415161718192021
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _ASM_MIPS_KDEBUG_H
  3. #define _ASM_MIPS_KDEBUG_H
  4. #include <linux/notifier.h>
  5. enum die_val {
  6. DIE_OOPS = 1,
  7. DIE_FP,
  8. DIE_TRAP,
  9. DIE_RI,
  10. DIE_PAGE_FAULT,
  11. DIE_BREAK,
  12. DIE_SSTEPBP,
  13. DIE_MSAFP,
  14. DIE_UPROBE,
  15. DIE_UPROBE_XOL,
  16. };
  17. #endif /* _ASM_MIPS_KDEBUG_H */