[JFFS2] Fix section mismatch warnings in JFFS2.
Mark certain functions with __init and __exit appropriately. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> Signed-off-by: David Woodhouse <dwmw2@infradead.org>
This commit is contained in:
Родитель
cead4dbc03
Коммит
7d2beb1359
|
@ -412,7 +412,7 @@ void jffs2_free_comprbuf(unsigned char *comprbuf, unsigned char *orig)
|
|||
kfree(comprbuf);
|
||||
}
|
||||
|
||||
int jffs2_compressors_init(void)
|
||||
int __init jffs2_compressors_init(void)
|
||||
{
|
||||
/* Registering compressors */
|
||||
#ifdef CONFIG_JFFS2_ZLIB
|
||||
|
@ -440,7 +440,7 @@ int jffs2_compressors_init(void)
|
|||
return 0;
|
||||
}
|
||||
|
||||
int jffs2_compressors_exit(void)
|
||||
int __exit jffs2_compressors_exit(void)
|
||||
{
|
||||
/* Unregistering compressors */
|
||||
#ifdef CONFIG_JFFS2_RUBIN
|
||||
|
|
|
@ -60,7 +60,7 @@ static int __init alloc_workspaces(void)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static void free_workspaces(void)
|
||||
static void __exit free_workspaces(void)
|
||||
{
|
||||
vfree(def_strm.workspace);
|
||||
vfree(inf_strm.workspace);
|
||||
|
@ -216,7 +216,7 @@ int __init jffs2_zlib_init(void)
|
|||
return ret;
|
||||
}
|
||||
|
||||
void jffs2_zlib_exit(void)
|
||||
void __exit jffs2_zlib_exit(void)
|
||||
{
|
||||
jffs2_unregister_compressor(&jffs2_zlib_comp);
|
||||
free_workspaces();
|
||||
|
|
Загрузка…
Ссылка в новой задаче