diff options
author | David Howells <dhowells@redhat.com> | 2007-05-08 23:27:02 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-08 23:41:14 -0400 |
commit | 5616df204ecf164ef2b124a17fd3cadd87954628 (patch) | |
tree | edddd0cacd41d3747a189795b453171d2a66a31b /arch/frv/kernel/entry.S | |
parent | 4b8df8915a6980f476e1fa8f4d156e36cb63bf76 (diff) |
FRV: Miscellaneous fixes
Miscellaneous fixes to bring FRV up to date:
(1) Copy the new syscall numbers from i386 to asm-frv/unistd.h and fill out
the syscall table in entry.S too.
(2) Mark __frv_uart0 and __frv_uart1 __pminitdata rather than __initdata so
that determine_clocks() can access them when CONFIG_PM=y.
(3) Make arch/frv/mm/elf-fdpic.c include asm/mman.h so that MAP_FIXED is
available (fixes commit 2fd3bebaad9da3b3b99c46a3389099424bf7ee35).
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/frv/kernel/entry.S')
-rw-r--r-- | arch/frv/kernel/entry.S | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/frv/kernel/entry.S b/arch/frv/kernel/entry.S index 940ac306e9a0..43dc08ec7511 100644 --- a/arch/frv/kernel/entry.S +++ b/arch/frv/kernel/entry.S | |||
@@ -1482,6 +1482,16 @@ sys_call_table: | |||
1482 | .long sys_faccessat | 1482 | .long sys_faccessat |
1483 | .long sys_pselect6 | 1483 | .long sys_pselect6 |
1484 | .long sys_ppoll | 1484 | .long sys_ppoll |
1485 | .long sys_unshare /* 310 */ | ||
1486 | .long sys_set_robust_list | ||
1487 | .long sys_get_robust_list | ||
1488 | .long sys_splice | ||
1489 | .long sys_sync_file_range | ||
1490 | .long sys_tee /* 315 */ | ||
1491 | .long sys_vmsplice | ||
1492 | .long sys_move_pages | ||
1493 | .long sys_getcpu | ||
1494 | .long sys_epoll_pwait | ||
1485 | 1495 | ||
1486 | 1496 | ||
1487 | syscall_table_size = (. - sys_call_table) | 1497 | syscall_table_size = (. - sys_call_table) |