Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'csky-for-linus-5.16-rc5' of git://github.com/c-sky/csky-linux

Pull csky from Guo Ren:
"Only one fix for csky: fix fpu config macro"

* tag 'csky-for-linus-5.16-rc5' of git://github.com/c-sky/csky-linux:
csky: fix typo of fpu config macro

+2 -2
+2 -2
arch/csky/kernel/traps.c
··· 209 209 210 210 asmlinkage void do_trap_fpe(struct pt_regs *regs) 211 211 { 212 - #ifdef CONFIG_CPU_HAS_FP 212 + #ifdef CONFIG_CPU_HAS_FPU 213 213 return fpu_fpe(regs); 214 214 #else 215 215 do_trap_error(regs, SIGILL, ILL_ILLOPC, regs->pc, ··· 219 219 220 220 asmlinkage void do_trap_priv(struct pt_regs *regs) 221 221 { 222 - #ifdef CONFIG_CPU_HAS_FP 222 + #ifdef CONFIG_CPU_HAS_FPU 223 223 if (user_mode(regs) && fpu_libc_helper(regs)) 224 224 return; 225 225 #endif