mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-25 21:24:08 +08:00
[S390] vmcp cleanup
No need to use the "&" prefix and, since you're calling nonseekable_open(), there is no need to use no_llseek(). Signed-off-by: Robert P. J. Day <rpjday@mindspring.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
This commit is contained in:
parent
71780f59e1
commit
d197e69218
@ -175,13 +175,12 @@ static long vmcp_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
|
|||||||
|
|
||||||
static const struct file_operations vmcp_fops = {
|
static const struct file_operations vmcp_fops = {
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
.open = &vmcp_open,
|
.open = vmcp_open,
|
||||||
.release = &vmcp_release,
|
.release = vmcp_release,
|
||||||
.read = &vmcp_read,
|
.read = vmcp_read,
|
||||||
.llseek = &no_llseek,
|
.write = vmcp_write,
|
||||||
.write = &vmcp_write,
|
.unlocked_ioctl = vmcp_ioctl,
|
||||||
.unlocked_ioctl = &vmcp_ioctl,
|
.compat_ioctl = vmcp_ioctl
|
||||||
.compat_ioctl = &vmcp_ioctl
|
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct miscdevice vmcp_dev = {
|
static struct miscdevice vmcp_dev = {
|
||||||
|
Loading…
Reference in New Issue
Block a user