ptdump.h 255 B

1234567891011121314
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _ASM_S390_PTDUMP_H
  3. #define _ASM_S390_PTDUMP_H
  4. void ptdump_check_wx(void);
  5. static inline void debug_checkwx(void)
  6. {
  7. if (IS_ENABLED(CONFIG_DEBUG_WX))
  8. ptdump_check_wx();
  9. }
  10. #endif /* _ASM_S390_PTDUMP_H */