diff options
Diffstat (limited to 'fs/squashfs/decompressor.h')
-rw-r--r-- | fs/squashfs/decompressor.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/fs/squashfs/decompressor.h b/fs/squashfs/decompressor.h index 7425f80783f6..3b305a70f7aa 100644 --- a/fs/squashfs/decompressor.h +++ b/fs/squashfs/decompressor.h | |||
@@ -52,4 +52,13 @@ static inline int squashfs_decompress(struct squashfs_sb_info *msblk, | |||
52 | return msblk->decompressor->decompress(msblk, buffer, bh, b, offset, | 52 | return msblk->decompressor->decompress(msblk, buffer, bh, b, offset, |
53 | length, srclength, pages); | 53 | length, srclength, pages); |
54 | } | 54 | } |
55 | |||
56 | #ifdef CONFIG_SQUASHFS_XZ | ||
57 | extern const struct squashfs_decompressor squashfs_xz_comp_ops; | ||
58 | #endif | ||
59 | |||
60 | #ifdef CONFIG_SQUASHFS_LZO | ||
61 | extern const struct squashfs_decompressor squashfs_lzo_comp_ops; | ||
62 | #endif | ||
63 | |||
55 | #endif | 64 | #endif |