diff options
Diffstat (limited to 'fs/ecryptfs/miscdev.c')
-rw-r--r-- | fs/ecryptfs/miscdev.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/ecryptfs/miscdev.c b/fs/ecryptfs/miscdev.c index 3745f612bcd4..940a82e63dc3 100644 --- a/fs/ecryptfs/miscdev.c +++ b/fs/ecryptfs/miscdev.c | |||
@@ -482,6 +482,7 @@ static const struct file_operations ecryptfs_miscdev_fops = { | |||
482 | .read = ecryptfs_miscdev_read, | 482 | .read = ecryptfs_miscdev_read, |
483 | .write = ecryptfs_miscdev_write, | 483 | .write = ecryptfs_miscdev_write, |
484 | .release = ecryptfs_miscdev_release, | 484 | .release = ecryptfs_miscdev_release, |
485 | .llseek = noop_llseek, | ||
485 | }; | 486 | }; |
486 | 487 | ||
487 | static struct miscdevice ecryptfs_miscdev = { | 488 | static struct miscdevice ecryptfs_miscdev = { |
@@ -500,7 +501,7 @@ static struct miscdevice ecryptfs_miscdev = { | |||
500 | * | 501 | * |
501 | * Returns zero on success; non-zero otherwise | 502 | * Returns zero on success; non-zero otherwise |
502 | */ | 503 | */ |
503 | int ecryptfs_init_ecryptfs_miscdev(void) | 504 | int __init ecryptfs_init_ecryptfs_miscdev(void) |
504 | { | 505 | { |
505 | int rc; | 506 | int rc; |
506 | 507 | ||