diff options
Diffstat (limited to 'drivers/misc')
-rw-r--r-- | drivers/misc/hpilo.c | 1 | ||||
-rw-r--r-- | drivers/misc/phantom.c | 1 | ||||
-rw-r--r-- | drivers/misc/sgi-gru/grufile.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/drivers/misc/hpilo.c b/drivers/misc/hpilo.c index 557a8c2a7336..69c1f2fca141 100644 --- a/drivers/misc/hpilo.c +++ b/drivers/misc/hpilo.c | |||
@@ -640,6 +640,7 @@ static const struct file_operations ilo_fops = { | |||
640 | .poll = ilo_poll, | 640 | .poll = ilo_poll, |
641 | .open = ilo_open, | 641 | .open = ilo_open, |
642 | .release = ilo_close, | 642 | .release = ilo_close, |
643 | .llseek = noop_llseek, | ||
643 | }; | 644 | }; |
644 | 645 | ||
645 | static irqreturn_t ilo_isr(int irq, void *data) | 646 | static irqreturn_t ilo_isr(int irq, void *data) |
diff --git a/drivers/misc/phantom.c b/drivers/misc/phantom.c index 75ee0d3f6f45..6b38b5964294 100644 --- a/drivers/misc/phantom.c +++ b/drivers/misc/phantom.c | |||
@@ -279,6 +279,7 @@ static const struct file_operations phantom_file_ops = { | |||
279 | .unlocked_ioctl = phantom_ioctl, | 279 | .unlocked_ioctl = phantom_ioctl, |
280 | .compat_ioctl = phantom_compat_ioctl, | 280 | .compat_ioctl = phantom_compat_ioctl, |
281 | .poll = phantom_poll, | 281 | .poll = phantom_poll, |
282 | .llseek = no_llseek, | ||
282 | }; | 283 | }; |
283 | 284 | ||
284 | static irqreturn_t phantom_isr(int irq, void *data) | 285 | static irqreturn_t phantom_isr(int irq, void *data) |
diff --git a/drivers/misc/sgi-gru/grufile.c b/drivers/misc/sgi-gru/grufile.c index cb3b4d228475..28852dfa310d 100644 --- a/drivers/misc/sgi-gru/grufile.c +++ b/drivers/misc/sgi-gru/grufile.c | |||
@@ -587,6 +587,7 @@ static const struct file_operations gru_fops = { | |||
587 | .owner = THIS_MODULE, | 587 | .owner = THIS_MODULE, |
588 | .unlocked_ioctl = gru_file_unlocked_ioctl, | 588 | .unlocked_ioctl = gru_file_unlocked_ioctl, |
589 | .mmap = gru_file_mmap, | 589 | .mmap = gru_file_mmap, |
590 | .llseek = noop_llseek, | ||
590 | }; | 591 | }; |
591 | 592 | ||
592 | static struct miscdevice gru_miscdev = { | 593 | static struct miscdevice gru_miscdev = { |