64 lines
1.8 KiB
C
64 lines
1.8 KiB
C
#include <linux/module.h>
|
|
#define INCLUDE_VERMAGIC
|
|
#include <linux/build-salt.h>
|
|
#include <linux/elfnote-lto.h>
|
|
#include <linux/export-internal.h>
|
|
#include <linux/vermagic.h>
|
|
#include <linux/compiler.h>
|
|
|
|
#ifdef CONFIG_UNWINDER_ORC
|
|
#include <asm/orc_header.h>
|
|
ORC_HEADER;
|
|
#endif
|
|
|
|
BUILD_SALT;
|
|
BUILD_LTO_INFO;
|
|
|
|
MODULE_INFO(vermagic, VERMAGIC_STRING);
|
|
MODULE_INFO(name, KBUILD_MODNAME);
|
|
|
|
__visible struct module __this_module
|
|
__section(".gnu.linkonce.this_module") = {
|
|
.name = KBUILD_MODNAME,
|
|
.init = init_module,
|
|
#ifdef CONFIG_MODULE_UNLOAD
|
|
.exit = cleanup_module,
|
|
#endif
|
|
.arch = MODULE_ARCH_INIT,
|
|
};
|
|
|
|
MODULE_INFO(intree, "Y");
|
|
|
|
#ifdef CONFIG_RETPOLINE
|
|
MODULE_INFO(retpoline, "Y");
|
|
#endif
|
|
|
|
KSYMTAB_FUNC(teedev_open, "_gpl", "");
|
|
KSYMTAB_FUNC(teedev_close_context, "_gpl", "");
|
|
KSYMTAB_FUNC(tee_session_calc_client_uuid, "_gpl", "");
|
|
KSYMTAB_FUNC(tee_device_alloc, "_gpl", "");
|
|
KSYMTAB_FUNC(tee_device_register, "_gpl", "");
|
|
KSYMTAB_FUNC(tee_device_unregister, "_gpl", "");
|
|
KSYMTAB_FUNC(tee_get_drvdata, "_gpl", "");
|
|
KSYMTAB_FUNC(tee_client_open_context, "_gpl", "");
|
|
KSYMTAB_FUNC(tee_client_close_context, "_gpl", "");
|
|
KSYMTAB_FUNC(tee_client_get_version, "_gpl", "");
|
|
KSYMTAB_FUNC(tee_client_open_session, "_gpl", "");
|
|
KSYMTAB_FUNC(tee_client_close_session, "_gpl", "");
|
|
KSYMTAB_FUNC(tee_client_invoke_func, "_gpl", "");
|
|
KSYMTAB_DATA(tee_bus_type, "_gpl", "");
|
|
KSYMTAB_FUNC(tee_shm_alloc_kernel_buf, "_gpl", "");
|
|
KSYMTAB_FUNC(tee_shm_alloc_priv_buf, "_gpl", "");
|
|
KSYMTAB_FUNC(tee_shm_register_kernel_buf, "_gpl", "");
|
|
KSYMTAB_FUNC(tee_shm_free, "_gpl", "");
|
|
KSYMTAB_FUNC(tee_shm_get_va, "_gpl", "");
|
|
KSYMTAB_FUNC(tee_shm_get_pa, "_gpl", "");
|
|
KSYMTAB_FUNC(tee_shm_get_from_id, "_gpl", "");
|
|
KSYMTAB_FUNC(tee_shm_put, "_gpl", "");
|
|
KSYMTAB_FUNC(tee_shm_pool_alloc_res_mem, "_gpl", "");
|
|
|
|
MODULE_INFO(depends, "");
|
|
|
|
|
|
MODULE_INFO(srcversion, "5A2596E39F3A51A0AB10B21");
|