summaryrefslogtreecommitdiff
path: root/compr.c
diff options
context:
space:
mode:
Diffstat (limited to 'compr.c')
-rw-r--r--compr.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/compr.c b/compr.c
index 239abf7..5b5d145 100644
--- a/compr.c
+++ b/compr.c
@@ -474,6 +474,9 @@ int jffs2_compressors_init(void)
#ifdef CONFIG_JFFS2_RTIME
jffs2_rtime_init();
#endif
+#ifdef CONFIG_JFFS2_LZO
+ jffs2_lzo_init();
+#endif
return 0;
}
@@ -485,5 +488,8 @@ int jffs2_compressors_exit(void)
#ifdef CONFIG_JFFS2_ZLIB
jffs2_zlib_exit();
#endif
+#ifdef CONFIG_JFFS2_LZO
+ jffs2_lzo_exit();
+#endif
return 0;
}