Skip to content

Commit

Permalink
[JFFS2] Remove stray __exit from jffs2_compressors_exit()
Browse files Browse the repository at this point in the history
It's used from the initfunc in case of failure too. We could actually do
with an '__initexit' for this kind of thing -- when built in to the
kernel, it could do with being dropped with the init text. We _could_
actually just use __init for it, but that would break if/when we start
dropping init text from modules. So let's just leave it as it was for now,
and mutter a little more about random 'janitorial' fixes from people who
aren't paying attention to what they're doing.

Signed-off-by: David Woodhouse <[email protected]>
  • Loading branch information
dwmw2 committed Jun 2, 2006
1 parent e9482b4 commit 3bcc86f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/jffs2/compr.c
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ int __init jffs2_compressors_init(void)
return 0;
}

int __exit jffs2_compressors_exit(void)
int jffs2_compressors_exit(void)
{
/* Unregistering compressors */
#ifdef CONFIG_JFFS2_RUBIN
Expand Down

0 comments on commit 3bcc86f

Please sign in to comment.