Files
chromebox_10th_audio_driver/kernel-src/linux-hwe-6.17-6.17.0/include/linux/ubsan.h
2026-04-04 07:45:01 +00:00

15 lines
302 B
C

/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _LINUX_UBSAN_H
#define _LINUX_UBSAN_H
#if defined(CONFIG_UBSAN_TRAP) || defined(CONFIG_UBSAN_KVM_EL2)
const char *report_ubsan_failure(u32 check_type);
#else
static inline const char *report_ubsan_failure(u32 check_type)
{
return NULL;
}
#endif
#endif