Merge branch 'akpm' (patches from Andrew Morton)
[cascardo/linux.git] / fs / sync.c
index ff96f99..f155374 100644 (file)
--- a/fs/sync.c
+++ b/fs/sync.c
@@ -180,7 +180,7 @@ SYSCALL_DEFINE1(syncfs, int, fd)
  */
 int vfs_fsync_range(struct file *file, loff_t start, loff_t end, int datasync)
 {
-       if (!file->f_op || !file->f_op->fsync)
+       if (!file->f_op->fsync)
                return -EINVAL;
        return file->f_op->fsync(file, start, end, datasync);
 }