Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9a556e89 authored by Robert Love's avatar Robert Love Committed by Linus Torvalds
Browse files

[PATCH] inotify: misc cleanup



Really simple, basic cleanup.

Signed-off-by: default avatarRobert Love <rml@novell.com>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 5995f16b
Loading
Loading
Loading
Loading
+3 −6
Original line number Diff line number Diff line
@@ -29,8 +29,6 @@
#include <linux/mount.h>
#include <linux/namei.h>
#include <linux/poll.h>
#include <linux/device.h>
#include <linux/miscdevice.h>
#include <linux/init.h>
#include <linux/list.h>
#include <linux/writeback.h>
@@ -993,6 +991,7 @@ asmlinkage long sys_inotify_rm_watch(int fd, u32 wd)
	dev = filp->private_data;
	ret = inotify_ignore(dev, wd);
	fput(filp);

	return ret;
}

@@ -1032,8 +1031,6 @@ static int __init inotify_init(void)
					 sizeof(struct inotify_kernel_event),
					 0, SLAB_PANIC, NULL, NULL);

	printk(KERN_INFO "inotify syscall\n");

	return 0;
}