diff options
author | H. Peter Anvin <hpa@zytor.com> | 2009-01-08 18:14:17 -0500 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-01-08 18:14:17 -0500 |
commit | 889c92d21db40be0b7d22a59395060237895bb85 (patch) | |
tree | db76e1e002e450cccc1b7a8119ad629eccc24da8 /include | |
parent | 6c11b12ac6f101732d43b5682f5b3ae4dda4205f (diff) |
bzip2/lzma: centralize format detection
Centralize the compression format detection to a common routine in the
lib directory, and use it for both initramfs and initrd.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/decompress/generic.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/decompress/generic.h b/include/linux/decompress/generic.h index f847f514f78e..6dfb856327bb 100644 --- a/include/linux/decompress/generic.h +++ b/include/linux/decompress/generic.h | |||
@@ -26,5 +26,8 @@ typedef int (*decompress_fn) (unsigned char *inbuf, int len, | |||
26 | *fill should be called (repeatedly...) to read data, at most IOBUF_SIZE | 26 | *fill should be called (repeatedly...) to read data, at most IOBUF_SIZE |
27 | */ | 27 | */ |
28 | 28 | ||
29 | /* Utility routine to detect the decompression method */ | ||
30 | decompress_fn decompress_method(const unsigned char *inbuf, int len, | ||
31 | const char **name); | ||
29 | 32 | ||
30 | #endif | 33 | #endif |