xref: /linux/arch/s390/boot/decompressor.h (revision e7bb43898bcf54da7ffb4819a04c8428f7db24db)
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