mirror of
https://github.com/torvalds/linux.git
synced 2024-11-18 01:51:53 +00:00
61aa4884b7
This is shorter and should be used instead of the longer form which checks for both possible config options. Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
14 lines
268 B
C
14 lines
268 B
C
#include <linux/module.h>
|
|
#include <linux/kvm_host.h>
|
|
#include <asm/ftrace.h>
|
|
|
|
#ifdef CONFIG_FUNCTION_TRACER
|
|
EXPORT_SYMBOL(_mcount);
|
|
#endif
|
|
#if IS_ENABLED(CONFIG_KVM)
|
|
EXPORT_SYMBOL(sie64a);
|
|
EXPORT_SYMBOL(sie_exit);
|
|
#endif
|
|
EXPORT_SYMBOL(memcpy);
|
|
EXPORT_SYMBOL(memset);
|