]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - fs/sync.c
firewire: cdev: shut down iso context before freeing the buffer
[karo-tx-linux.git] / fs / sync.c
index 23ebbd72ecc9dd3ae5171b639f7084a68778a477..a16d53e5fe9d68a5a4f6b000fd1366e9fb91e167 100644 (file)
--- a/fs/sync.c
+++ b/fs/sync.c
@@ -36,7 +36,7 @@ static void do_sync(unsigned long wait)
                laptop_sync_completion();
 }
 
-asmlinkage long sys_sync(void)
+SYSCALL_DEFINE0(sync)
 {
        do_sync(1);
        return 0;
@@ -144,12 +144,12 @@ static int do_fsync(unsigned int fd, int datasync)
        return ret;
 }
 
-asmlinkage long sys_fsync(unsigned int fd)
+SYSCALL_DEFINE1(fsync, unsigned int, fd)
 {
        return do_fsync(fd, 0);
 }
 
-asmlinkage long sys_fdatasync(unsigned int fd)
+SYSCALL_DEFINE1(fdatasync, unsigned int, fd)
 {
        return do_fsync(fd, 1);
 }