decompressor.c (bd86d2ea369be2e768b58cba590e70b8bdc6f86a) | decompressor.c (7ab41c2c08a32132ba8c14624910e2fe8ce4ba4b) |
---|---|
1// SPDX-License-Identifier: GPL-2.0 2/* 3 * Definitions and wrapper functions for kernel decompressor 4 * 5 * Copyright IBM Corp. 2010 6 * 7 * Author(s): Martin Schwidefsky <schwidefsky@de.ibm.com> 8 */ --- 66 unchanged lines hidden (view full) --- 75 vmlinux.default_lma + vmlinux.image_size + vmlinux.bss_size); 76} 77 78void *decompress_kernel(void) 79{ 80 void *output = (void *)decompress_offset; 81 82 __decompress(_compressed_start, _compressed_end - _compressed_start, | 1// SPDX-License-Identifier: GPL-2.0 2/* 3 * Definitions and wrapper functions for kernel decompressor 4 * 5 * Copyright IBM Corp. 2010 6 * 7 * Author(s): Martin Schwidefsky <schwidefsky@de.ibm.com> 8 */ --- 66 unchanged lines hidden (view full) --- 75 vmlinux.default_lma + vmlinux.image_size + vmlinux.bss_size); 76} 77 78void *decompress_kernel(void) 79{ 80 void *output = (void *)decompress_offset; 81 82 __decompress(_compressed_start, _compressed_end - _compressed_start, |
83 NULL, NULL, output, 0, NULL, error); | 83 NULL, NULL, output, vmlinux.image_size, NULL, error); |
84 return output; 85} | 84 return output; 85} |