summaryrefslogtreecommitdiffstats
path: root/arch/s390/boot/decompressor.h
blob: 92b81d2ea35d65f3d35fbf1ad053442cfaa8da6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef BOOT_COMPRESSED_DECOMPRESSOR_H
#define BOOT_COMPRESSED_DECOMPRESSOR_H

#ifdef CONFIG_KERNEL_UNCOMPRESSED
static inline void *decompress_kernel(void) { return NULL; }
#else
void *decompress_kernel(void);
#endif
unsigned long mem_safe_offset(void);

#endif /* BOOT_COMPRESSED_DECOMPRESSOR_H */