Blackfin arch: move cond_syscall() behind __KERNEL__ like all other architectures

Signed-off-by: Mike Frysinger <michael.frysinger@analog.com>
Signed-off-by: Bryan Wu <bryan.wu@analog.com>

authored by Mike Frysinger and committed by Bryan Wu b9b71276 86b73c8c

+2 -1
+2 -1
include/asm-blackfin/unistd.h
··· 369 369 #define __ARCH_WANT_SYS_NICE 370 370 #define __ARCH_WANT_SYS_RT_SIGACTION 371 371 #define __ARCH_WANT_SYS_RT_SIGSUSPEND 372 - #endif 373 372 374 373 /* 375 374 * "Conditional" syscalls ··· 377 378 * but it doesn't work on all toolchains, so we just do it by hand 378 379 */ 379 380 #define cond_syscall(x) asm(".weak\t_" #x "\n\t.set\t_" #x ",_sys_ni_syscall"); 381 + 382 + #endif /* __KERNEL__ */ 380 383 381 384 #endif /* __ASM_BFIN_UNISTD_H */