diff options
Diffstat (limited to 'compr.c')
-rw-r--r-- | compr.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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; } |