repo.or.cz
/
drm
/
drm-misc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
printf: Remove unused 'bprintf'
[drm/drm-misc.git]
/
include
/
linux
/
ubsan.h
blob
d8219cbe09ff8d4d504bff36b74cf72f44e4a4c1
1
/* SPDX-License-Identifier: GPL-2.0 */
2
#ifndef _LINUX_UBSAN_H
3
#define _LINUX_UBSAN_H
4
5
#ifdef CONFIG_UBSAN_TRAP
6
const char
*
report_ubsan_failure
(
struct
pt_regs
*
regs
,
u32 check_type
);
7
#else
8
static
inline
const char
*
report_ubsan_failure
(
struct
pt_regs
*
regs
,
u32 check_type
)
9
{
10
return
NULL
;
11
}
12
#endif
13
14
#endif