75 lines
2.1 KiB
C
75 lines
2.1 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>
|
|
|
|
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
|
|
|
|
SYMBOL_CRC(fpga_region_class_find, 0xfe237552, "_gpl");
|
|
SYMBOL_CRC(fpga_region_program_fpga, 0x9eb37a12, "_gpl");
|
|
SYMBOL_CRC(fpga_region_register_full, 0x3f7229ab, "_gpl");
|
|
SYMBOL_CRC(fpga_region_register, 0xd6a530f6, "_gpl");
|
|
SYMBOL_CRC(fpga_region_unregister, 0xed9edab4, "_gpl");
|
|
|
|
static const struct modversion_info ____versions[]
|
|
__used __section("__versions") = {
|
|
{ 0xbdfb6dbb, "__fentry__" },
|
|
{ 0x2c1aad83, "class_find_device" },
|
|
{ 0xffb7c514, "ida_free" },
|
|
{ 0x37a0cba, "kfree" },
|
|
{ 0x5c8809da, "device_unregister" },
|
|
{ 0x733a1635, "__class_create" },
|
|
{ 0x5b8239ca, "__x86_return_thunk" },
|
|
{ 0x3c3ff9fd, "sprintf" },
|
|
{ 0x9ee22d8c, "class_destroy" },
|
|
{ 0xa7d5f92e, "ida_destroy" },
|
|
{ 0x5b94ad75, "kmalloc_caches" },
|
|
{ 0xac4a1f46, "kmalloc_trace" },
|
|
{ 0xe7a02573, "ida_alloc_range" },
|
|
{ 0xcefb0c9f, "__mutex_init" },
|
|
{ 0x1303a5af, "dev_set_name" },
|
|
{ 0xdcab9553, "device_register" },
|
|
{ 0xb5686f70, "put_device" },
|
|
{ 0x9040242d, "_dev_err" },
|
|
{ 0xbb9ed3bf, "mutex_trylock" },
|
|
{ 0x4ddf0d50, "__dynamic_dev_dbg" },
|
|
{ 0x43ec602, "get_device" },
|
|
{ 0x64287211, "try_module_get" },
|
|
{ 0x6498059b, "fpga_mgr_lock" },
|
|
{ 0x65487097, "__x86_indirect_thunk_rax" },
|
|
{ 0x2c8167cf, "fpga_bridges_disable" },
|
|
{ 0xa893c789, "fpga_mgr_load" },
|
|
{ 0x633c4b9, "fpga_bridges_enable" },
|
|
{ 0xf3e6cd6d, "fpga_mgr_unlock" },
|
|
{ 0x41e6672c, "module_put" },
|
|
{ 0x3213f038, "mutex_unlock" },
|
|
{ 0xb2b884c, "fpga_bridges_put" },
|
|
{ 0x7098e516, "module_layout" },
|
|
};
|
|
|
|
MODULE_INFO(depends, "fpga-mgr,fpga-bridge");
|
|
|