Cleaned up all compile errors.

This commit is contained in:
Bahadir Balban
2008-08-25 16:59:00 +03:00
parent cdfaa4bbe9
commit 476bac5142
19 changed files with 99 additions and 80 deletions

View File

@@ -15,7 +15,7 @@
* well. struct list_head new_mappings;
*/
int sys_map(struct syscall_args *regs)
int sys_map(syscall_context_t *regs)
{
unsigned long phys = regs->r0;
unsigned long virt = regs->r1;
@@ -41,7 +41,7 @@ found:
}
int sys_unmap(struct syscall_args *regs)
int sys_unmap(syscall_context_t *regs)
{
unsigned long virt = regs->r0;
unsigned long npages = regs->r1;