diff options
Diffstat (limited to 'fs/squashfs/decompressor.c')
-rw-r--r-- | fs/squashfs/decompressor.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/fs/squashfs/decompressor.c b/fs/squashfs/decompressor.c index 9f1b0bb96f1..3f6271d86ab 100644 --- a/fs/squashfs/decompressor.c +++ b/fs/squashfs/decompressor.c | |||
@@ -52,6 +52,12 @@ static const struct squashfs_decompressor squashfs_xz_comp_ops = { | |||
52 | }; | 52 | }; |
53 | #endif | 53 | #endif |
54 | 54 | ||
55 | #ifndef CONFIG_SQUASHFS_ZLIB | ||
56 | static const struct squashfs_decompressor squashfs_zlib_comp_ops = { | ||
57 | NULL, NULL, NULL, ZLIB_COMPRESSION, "zlib", 0 | ||
58 | }; | ||
59 | #endif | ||
60 | |||
55 | static const struct squashfs_decompressor squashfs_unknown_comp_ops = { | 61 | static const struct squashfs_decompressor squashfs_unknown_comp_ops = { |
56 | NULL, NULL, NULL, 0, "unknown", 0 | 62 | NULL, NULL, NULL, 0, "unknown", 0 |
57 | }; | 63 | }; |