Skip to content

Commit

Permalink
ashmem: use vfs_llseek()
Browse files Browse the repository at this point in the history
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
  • Loading branch information
Al Viro committed Oct 9, 2014
1 parent 4b8e992 commit 91360b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/staging/android/ashmem.c
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ static loff_t ashmem_llseek(struct file *file, loff_t offset, int origin)
goto out;
}

ret = asma->file->f_op->llseek(asma->file, offset, origin);
ret = vfs_llseek(asma->file, offset, origin);
if (ret < 0)
goto out;

Expand Down

0 comments on commit 91360b0

Please sign in to comment.