mirror of https://github.com/dynup/kpatch
kmod/core: minor style fix
For compatibility with checkpatch
This commit is contained in:
parent
66cab1d4a2
commit
ab112cce2d
|
@ -154,7 +154,8 @@ static inline int kpatch_compare_addresses(unsigned long stack_addr,
|
|||
{
|
||||
if (stack_addr >= func_addr && stack_addr < func_addr + func_size) {
|
||||
/* TODO: use kallsyms to print symbol name */
|
||||
pr_err("activeness safety check failed for function at address 0x%lx\n", stack_addr);
|
||||
pr_err("activeness safety check failed for function at address 0x%lx\n",
|
||||
stack_addr);
|
||||
return -EBUSY;
|
||||
}
|
||||
return 0;
|
||||
|
|
Loading…
Reference in New Issue