initramfs: support initramfs that is bigger than 2GiB
[firefly-linux-kernel-4.4.55.git] / include / linux / decompress / bunzip2.h
index 115272137a9c8cb3e2b8f1d62dfb010999c97087..4d683df898e6eace4661926628982c70249a5276 100644 (file)
@@ -1,10 +1,10 @@
 #ifndef DECOMPRESS_BUNZIP2_H
 #define DECOMPRESS_BUNZIP2_H
 
-int bunzip2(unsigned char *inbuf, int len,
-           int(*fill)(void*, unsigned int),
-           int(*flush)(void*, unsigned int),
+int bunzip2(unsigned char *inbuf, long len,
+           long (*fill)(void*, unsigned long),
+           long (*flush)(void*, unsigned long),
            unsigned char *output,
-           int *pos,
+           long *pos,
            void(*error)(char *x));
 #endif