Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[S390] sclp: fix compile error for !SCLP_CONSOLE

Define an empty static inline version of sclp_console_pm_event()
to fix the build error below for !SCLP_CONSOLE.

drivers/s390/built-in.o: In function `sclp_rw_pm_event':
sclp_rw.c:(.text+0x12f68): undefined reference to `sclp_console_pm_event'

Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>

authored by

Heiko Carstens and committed by
Martin Schwidefsky
c9568fdd faf80d62

+5
+5
drivers/s390/char/sclp_rw.h
··· 92 92 void sclp_set_htab(struct sclp_buffer *, unsigned short); 93 93 int sclp_chars_in_buffer(struct sclp_buffer *); 94 94 95 + #ifdef CONFIG_SCLP_CONSOLE 95 96 void sclp_console_pm_event(enum sclp_pm_event sclp_pm_event); 97 + #else 98 + static inline void sclp_console_pm_event(enum sclp_pm_event sclp_pm_event) { } 99 + #endif 100 + 96 101 #endif /* __SCLP_RW_H__ */