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