mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-30 16:07:39 +00:00
USB: yurex: add .llseek fop to file_operations
Default llseek operation behavior was changed by the patch named "vfs: make no_llseek the default" after the yurex driver had been merged, so the llseek to yurex is now ignored. This patch add llseek fop with default_llseek to yurex driver to catch up to the change. Signed-off-by: Tomoki Sekiyama <tomoki.sekiyama@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
28942bb6a9
commit
27f485b5b2
1 changed files with 1 additions and 0 deletions
|
@ -536,6 +536,7 @@ static const struct file_operations yurex_fops = {
|
|||
.open = yurex_open,
|
||||
.release = yurex_release,
|
||||
.fasync = yurex_fasync,
|
||||
.llseek = default_llseek,
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue