s390/decompressor: remove informational messages
authorMartin Schwidefsky <schwidefsky@de.ibm.com>
Thu, 26 Oct 2017 13:36:29 +0000 (15:36 +0200)
committerMartin Schwidefsky <schwidefsky@de.ibm.com>
Thu, 26 Oct 2017 14:44:59 +0000 (16:44 +0200)
The decompressor for bzImage prints two informational messages which are
not really helpful. The decompression step is fast and if something bad
happens an error message will be printed. Remove the noise.

Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
arch/s390/boot/compressed/misc.c

index 33ca293..8864179 100644 (file)
@@ -169,9 +169,7 @@ unsigned long decompress_kernel(void)
        free_mem_ptr = (unsigned long) &_end;
        free_mem_end_ptr = free_mem_ptr + HEAP_SIZE;
 
-       puts("Uncompressing Linux... ");
        __decompress(input_data, input_len, NULL, NULL, output, 0, NULL, error);
-       puts("Ok, booting the kernel.\n");
        return (unsigned long) output;
 }