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
@ -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 New Issue
Block a user