diff options
Diffstat (limited to 'include/asm-frv')
-rw-r--r-- | include/asm-frv/unistd.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/asm-frv/unistd.h b/include/asm-frv/unistd.h index b80dbd839475..d104d1b91d39 100644 --- a/include/asm-frv/unistd.h +++ b/include/asm-frv/unistd.h | |||
@@ -320,6 +320,7 @@ | |||
320 | #ifdef __KERNEL__ | 320 | #ifdef __KERNEL__ |
321 | 321 | ||
322 | #define NR_syscalls 310 | 322 | #define NR_syscalls 310 |
323 | #include <linux/err.h> | ||
323 | 324 | ||
324 | /* | 325 | /* |
325 | * process the return value of a syscall, consigning it to one of two possible fates | 326 | * process the return value of a syscall, consigning it to one of two possible fates |
@@ -329,7 +330,7 @@ | |||
329 | #define __syscall_return(type, res) \ | 330 | #define __syscall_return(type, res) \ |
330 | do { \ | 331 | do { \ |
331 | unsigned long __sr2 = (res); \ | 332 | unsigned long __sr2 = (res); \ |
332 | if (__builtin_expect(__sr2 >= (unsigned long)(-4095), 0)) { \ | 333 | if (__builtin_expect(__sr2 >= (unsigned long)(-MAX_ERRNO), 0)) { \ |
333 | errno = (-__sr2); \ | 334 | errno = (-__sr2); \ |
334 | __sr2 = ~0UL; \ | 335 | __sr2 = ~0UL; \ |
335 | } \ | 336 | } \ |