Commit f3c4ee09 authored by Alexander Viro's avatar Alexander Viro Committed by Linus Torvalds

[PATCH] fix for exit_fat_fs()

	Kudos to OGAWA Hirofumi for finding that one - gcc barfs on the
current code, trying to define an alias to external symbol.
parent 7b4b5a08
......@@ -47,5 +47,10 @@ static int __init init_fat_fs(void)
return fat_init_inodecache();
}
static void __exit exit_fat_fs(void)
{
fat_destory_inodecache();
}
module_init(init_fat_fs)
module_exit(fat_destroy_inodecache)
module_exit(exit_fat_fs)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment