Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 27784
b: refs/heads/master
c: 7d2beb1
h: refs/heads/master
v: v3
  • Loading branch information
David Brownell authored and David Woodhouse committed May 16, 2006
1 parent ce79053 commit 5487ca0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: cead4dbc03ba6eb2e35bac04439b76a0cc2286ce
refs/heads/master: 7d2beb135986477f53da77303356bd04329f8d0e
4 changes: 2 additions & 2 deletions trunk/fs/jffs2/compr.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions trunk/fs/jffs2/compr_zlib.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -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();
Expand Down

0 comments on commit 5487ca0

Please sign in to comment.