]> git.kernelconcepts.de Git - karo-tx-linux.git/blobdiff - arch/s390/boot/compressed/misc.c
lib/decompressors: use real out buf size for gunzip with kernel
[karo-tx-linux.git] / arch / s390 / boot / compressed / misc.c
index 42506b371b74144886e42a9ec21d43edcf680566..4da604ebf6fd8edd75eb01951913c79991d0eca5 100644 (file)
@@ -167,7 +167,7 @@ unsigned long decompress_kernel(void)
 #endif
 
        puts("Uncompressing Linux... ");
-       decompress(input_data, input_len, NULL, NULL, output, NULL, error);
+       __decompress(input_data, input_len, NULL, NULL, output, 0, NULL, error);
        puts("Ok, booting the kernel.\n");
        return (unsigned long) output;
 }