Commit 7d2beb13 authored by David Brownell's avatar David Brownell Committed by David Woodhouse

[JFFS2] Fix section mismatch warnings in JFFS2.

Mark certain functions with __init and __exit appropriately.
Signed-off-by: default avatarDavid Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: default avatarDavid Woodhouse <dwmw2@infradead.org>
parent cead4dbc
...@@ -412,7 +412,7 @@ void jffs2_free_comprbuf(unsigned char *comprbuf, unsigned char *orig) ...@@ -412,7 +412,7 @@ void jffs2_free_comprbuf(unsigned char *comprbuf, unsigned char *orig)
kfree(comprbuf); kfree(comprbuf);
} }
int jffs2_compressors_init(void) int __init jffs2_compressors_init(void)
{ {
/* Registering compressors */ /* Registering compressors */
#ifdef CONFIG_JFFS2_ZLIB #ifdef CONFIG_JFFS2_ZLIB
...@@ -440,7 +440,7 @@ int jffs2_compressors_init(void) ...@@ -440,7 +440,7 @@ int jffs2_compressors_init(void)
return 0; return 0;
} }
int jffs2_compressors_exit(void) int __exit jffs2_compressors_exit(void)
{ {
/* Unregistering compressors */ /* Unregistering compressors */
#ifdef CONFIG_JFFS2_RUBIN #ifdef CONFIG_JFFS2_RUBIN
......
...@@ -60,7 +60,7 @@ static int __init alloc_workspaces(void) ...@@ -60,7 +60,7 @@ static int __init alloc_workspaces(void)
return 0; return 0;
} }
static void free_workspaces(void) static void __exit free_workspaces(void)
{ {
vfree(def_strm.workspace); vfree(def_strm.workspace);
vfree(inf_strm.workspace); vfree(inf_strm.workspace);
...@@ -216,7 +216,7 @@ int __init jffs2_zlib_init(void) ...@@ -216,7 +216,7 @@ int __init jffs2_zlib_init(void)
return ret; return ret;
} }
void jffs2_zlib_exit(void) void __exit jffs2_zlib_exit(void)
{ {
jffs2_unregister_compressor(&jffs2_zlib_comp); jffs2_unregister_compressor(&jffs2_zlib_comp);
free_workspaces(); free_workspaces();
......
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