s390/decompressor: fix build warning
Fixes the following warning with CONFIG_KERNEL_UNCOMPRESSED=y arch/s390/boot/compressed/decompressor.h:6:46: warning: non-void function does not return a value [-Wreturn-type] static inline void *decompress_kernel(void) {} ^ Signed-off-by: Vasily Gorbik <gor@linux.ibm.com> Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
This commit is contained in:
parent
90178c1900
commit
39f2899b98
@ -2,8 +2,10 @@
|
|||||||
#ifndef BOOT_COMPRESSED_DECOMPRESSOR_H
|
#ifndef BOOT_COMPRESSED_DECOMPRESSOR_H
|
||||||
#define BOOT_COMPRESSED_DECOMPRESSOR_H
|
#define BOOT_COMPRESSED_DECOMPRESSOR_H
|
||||||
|
|
||||||
|
#include <linux/stddef.h>
|
||||||
|
|
||||||
#ifdef CONFIG_KERNEL_UNCOMPRESSED
|
#ifdef CONFIG_KERNEL_UNCOMPRESSED
|
||||||
static inline void *decompress_kernel(void) {}
|
static inline void *decompress_kernel(void) { return NULL; }
|
||||||
#else
|
#else
|
||||||
void *decompress_kernel(void);
|
void *decompress_kernel(void);
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user