diff options
author | Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com> | 2008-04-24 07:08:48 +0000 |
---|---|---|
committer | Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com> | 2008-04-24 07:08:48 +0000 |
commit | 76dc6857465109973ee79a8517ed27680289c36d (patch) | |
tree | de744555e38d43a8b09c667689d1bf099e0b6766 /libc/sysdeps/linux/avr32/mmap.c | |
parent | 18f85730003544cb880641e0bb12b5901dfe1757 (diff) |
Fix whitespace damage in AVR32 in libc sysdeps AVR32 specific Linux files.
Diffstat (limited to 'libc/sysdeps/linux/avr32/mmap.c')
-rw-r--r-- | libc/sysdeps/linux/avr32/mmap.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/libc/sysdeps/linux/avr32/mmap.c b/libc/sysdeps/linux/avr32/mmap.c index 80310a45f..2ee025a26 100644 --- a/libc/sysdeps/linux/avr32/mmap.c +++ b/libc/sysdeps/linux/avr32/mmap.c @@ -14,20 +14,20 @@ libc_hidden_proto(mmap) static _syscall6(__ptr_t, mmap2, __ptr_t, addr, size_t, len, int, prot, - int, flags, int, fd, __off_t, pgoff); + int, flags, int, fd, __off_t, pgoff); __ptr_t mmap(__ptr_t addr, size_t len, int prot, int flags, int fd, __off_t offset) { - unsigned long page_size = sysconf(_SC_PAGESIZE); - unsigned long pgoff; + unsigned long page_size = sysconf(_SC_PAGESIZE); + unsigned long pgoff; - if (offset & (page_size - 1)) { - __set_errno(EINVAL); - return MAP_FAILED; - } + if (offset & (page_size - 1)) { + __set_errno(EINVAL); + return MAP_FAILED; + } - pgoff = (unsigned long)offset >> (31 - __builtin_clz(page_size)); + pgoff = (unsigned long)offset >> (31 - __builtin_clz(page_size)); - return mmap2(addr, len, prot, flags, fd, pgoff); + return mmap2(addr, len, prot, flags, fd, pgoff); } libc_hidden_def(mmap) |