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

Commit df69f52d authored by Dan Streetman's avatar Dan Streetman Committed by Linus Torvalds
Browse files

zpool: remove no-op module init/exit



Remove zpool_init() and zpool_exit(); they do nothing other than print
"loaded" and "unloaded".

Signed-off-by: default avatarDan Streetman <ddstreet@ieee.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent c83db4f4
Loading
Loading
Loading
Loading
+0 −14
Original line number Diff line number Diff line
@@ -320,20 +320,6 @@ u64 zpool_get_total_size(struct zpool *zpool)
	return zpool->driver->total_size(zpool->pool);
}

static int __init init_zpool(void)
{
	pr_info("loaded\n");
	return 0;
}

static void __exit exit_zpool(void)
{
	pr_info("unloaded\n");
}

module_init(init_zpool);
module_exit(exit_zpool);

MODULE_LICENSE("GPL");
MODULE_AUTHOR("Dan Streetman <ddstreet@ieee.org>");
MODULE_DESCRIPTION("Common API for compressed memory storage");