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

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

[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
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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
+2 −2
Original line number Diff line number Diff line
@@ -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();