]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commitdiff
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 33ca29333e1808ae4dc0f9e8875902ae2bb307f5..886417992e3c857ae916e91bff8d12b37dd48c0e 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;
 }