diff options
author | Andrew Morton <akpm@linux-foundation.org> | 2008-10-13 21:42:07 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-10-13 21:42:07 -0400 |
commit | 6bff338bb60cb97f4ad06aa20f5c8e547eb1bc7a (patch) | |
tree | 296a7c0dc74f9608abc9ffd920b2bc6a8ea1429f /drivers/isdn/mISDN/timerdev.c | |
parent | b7c6bfb710cfd6552c3186cb8ce1ac9eef7a0e3d (diff) |
misdn: use nonseekable_open()
The driver just sets ->llseek to NULL. It should also clear FMODE_LSEEK to
tell the VFS that seeks are not supported.
Pointed out by Christoph Hellwig.
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/isdn/mISDN/timerdev.c')
-rw-r--r-- | drivers/isdn/mISDN/timerdev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/isdn/mISDN/timerdev.c b/drivers/isdn/mISDN/timerdev.c index e7462924b505..875fabe16e36 100644 --- a/drivers/isdn/mISDN/timerdev.c +++ b/drivers/isdn/mISDN/timerdev.c | |||
@@ -61,7 +61,7 @@ mISDN_open(struct inode *ino, struct file *filep) | |||
61 | init_waitqueue_head(&dev->wait); | 61 | init_waitqueue_head(&dev->wait); |
62 | filep->private_data = dev; | 62 | filep->private_data = dev; |
63 | __module_get(THIS_MODULE); | 63 | __module_get(THIS_MODULE); |
64 | return 0; | 64 | return nonseekable_open(ino, filep); |
65 | } | 65 | } |
66 | 66 | ||
67 | static int | 67 | static int |