Fix compilation in the case when kernel doesn't have KDB ebabled.
subr_kdb.c still references breakpoint() in this case.
This commit is contained in:
parent
1893f5dd32
commit
ae5a12cdf1
@ -50,6 +50,13 @@ struct thread;
|
||||
|
||||
#ifdef KDB
|
||||
void breakpoint(void);
|
||||
#else
|
||||
static __inline void
|
||||
breakpoint(void)
|
||||
{
|
||||
|
||||
return;
|
||||
}
|
||||
#endif
|
||||
|
||||
/* CPU register mangling inlines */
|
||||
|
Loading…
Reference in New Issue
Block a user