aboutsummaryrefslogtreecommitdiff
path: root/arch/s390
diff options
context:
space:
mode:
authorYinghai Lu <yinghai@kernel.org>2015-08-25 14:21:40 +1000
committerStephen Rothwell <sfr@canb.auug.org.au>2015-08-25 14:21:40 +1000
commit59b4f8ee0d6bcc592feb0a6a99015163c7bbd770 (patch)
tree935fe4ae98d8166c3642fce7fc4ac2abeeed7adc /arch/s390
parent9059e81b6fb487d05943d1b07ecfa32ceea71521 (diff)
lib-decompressors-use-real-out-buf-size-for-gunzip-with-kernel-v2
-v2: fix unused warning on sh/arm/m32r from Fengguang. Signed-off-by: Yinghai Lu <yinghai@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'arch/s390')
-rw-r--r--arch/s390/boot/compressed/misc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/s390/boot/compressed/misc.c b/arch/s390/boot/compressed/misc.c
index 42506b371b74..4da604ebf6fd 100644
--- a/arch/s390/boot/compressed/misc.c
+++ b/arch/s390/boot/compressed/misc.c
@@ -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;
}