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

Commit 7c28cbae authored by Robert P. J. Day's avatar Robert P. J. Day Committed by Linus Torvalds
Browse files

NCPFS: update diagnostic strings to match routine names.



Signed-off-by: default avatarRobert P. J. Day <rpjday@crashcourse.ca>
Cc: Petr Vandrovec <VANDROVE@vc.cvut.cz>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 797074e4
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -987,7 +987,7 @@ static struct file_system_type ncp_fs_type = {
static int __init init_ncp_fs(void)
static int __init init_ncp_fs(void)
{
{
	int err;
	int err;
	DPRINTK("ncpfs: init_module called\n");
	DPRINTK("ncpfs: init_ncp_fs called\n");


	err = init_inodecache();
	err = init_inodecache();
	if (err)
	if (err)
@@ -1004,7 +1004,7 @@ static int __init init_ncp_fs(void)


static void __exit exit_ncp_fs(void)
static void __exit exit_ncp_fs(void)
{
{
	DPRINTK("ncpfs: cleanup_module called\n");
	DPRINTK("ncpfs: exit_ncp_fs called\n");
	unregister_filesystem(&ncp_fs_type);
	unregister_filesystem(&ncp_fs_type);
	destroy_inodecache();
	destroy_inodecache();
}
}