Commit 0cfdab00 authored by Rob Radez's avatar Rob Radez Committed by David S. Miller

[SPARC64]: Delete fop->read stub in riowatchdog driver.

parent ca377000
......@@ -194,17 +194,11 @@ static ssize_t riowd_write(struct file *file, const char *buf, size_t count, lof
return 0;
}
static ssize_t riowd_read(struct file *file, char *buffer, size_t count, loff_t *ppos)
{
return -EINVAL;
}
static struct file_operations riowd_fops = {
.owner = THIS_MODULE,
.ioctl = riowd_ioctl,
.open = riowd_open,
.write = riowd_write,
.read = riowd_read,
.release = riowd_release,
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment