xref: /linux/arch/s390/boot/decompressor.h (revision 253f68f413a87a4e2bd93e61b00410e5e1b7b774)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef BOOT_COMPRESSED_DECOMPRESSOR_H
3 #define BOOT_COMPRESSED_DECOMPRESSOR_H
4 
5 #ifdef CONFIG_KERNEL_UNCOMPRESSED
6 static inline void *decompress_kernel(void) { return NULL; }
7 #else
8 void *decompress_kernel(void);
9 #endif
10 unsigned long mem_safe_offset(void);
11 
12 #endif /* BOOT_COMPRESSED_DECOMPRESSOR_H */
13