97 lines
3.0 KiB
C
97 lines
3.0 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
|
|
|
|
|
|
static const struct modversion_info ____versions[]
|
|
__used __section("__versions") = {
|
|
{ 0xfe237552, "fpga_region_class_find" },
|
|
{ 0x2d97b4db, "platform_driver_unregister" },
|
|
{ 0x9eb37a12, "fpga_region_program_fpga" },
|
|
{ 0x96848186, "scnprintf" },
|
|
{ 0xf474c21c, "bitmap_print_to_pagebuf" },
|
|
{ 0x8a264ede, "fpga_image_info_free" },
|
|
{ 0xb8dfab9b, "dfl_fpga_dev_ops_unregister" },
|
|
{ 0xe9c322a0, "pcpu_hot" },
|
|
{ 0xb2b884c, "fpga_bridges_put" },
|
|
{ 0x4ddf0d50, "__dynamic_dev_dbg" },
|
|
{ 0xba8fbd64, "_raw_spin_lock" },
|
|
{ 0xbdfb6dbb, "__fentry__" },
|
|
{ 0x672e58c, "platform_device_add_data" },
|
|
{ 0x65487097, "__x86_indirect_thunk_rax" },
|
|
{ 0x22c9ccba, "__cpuhp_state_remove_instance" },
|
|
{ 0xecb02a75, "dfl_fpga_dev_feature_init" },
|
|
{ 0xb5686f70, "put_device" },
|
|
{ 0x8816ea4a, "perf_pmu_migrate_context" },
|
|
{ 0x24222db8, "perf_pmu_register" },
|
|
{ 0x9040242d, "_dev_err" },
|
|
{ 0x5ce6382c, "__cpuhp_setup_state" },
|
|
{ 0xe759b821, "cpu_bit_bitmap" },
|
|
{ 0xc505f3b6, "platform_device_unregister" },
|
|
{ 0x4dfa8d4b, "mutex_lock" },
|
|
{ 0x37a96071, "platform_device_add" },
|
|
{ 0x4ee2edb2, "dfl_feature_ioctl_set_irq" },
|
|
{ 0x147f4eaf, "__cpuhp_state_add_instance" },
|
|
{ 0x564043a0, "platform_device_alloc" },
|
|
{ 0x55999f32, "perf_pmu_unregister" },
|
|
{ 0x7bcf5f59, "__cpu_online_mask" },
|
|
{ 0x6a6e05bf, "kstrtou8" },
|
|
{ 0x5c3c7387, "kstrtoull" },
|
|
{ 0xb5871d34, "dfl_feature_ioctl_get_num_irqs" },
|
|
{ 0x5b8239ca, "__x86_return_thunk" },
|
|
{ 0x17de3d5, "nr_cpu_ids" },
|
|
{ 0xb0df83db, "devm_hwmon_device_register_with_info" },
|
|
{ 0x2f5507b8, "__platform_driver_register" },
|
|
{ 0xb3d8d162, "devm_kasprintf" },
|
|
{ 0x3c3ff9fd, "sprintf" },
|
|
{ 0x35269782, "dfl_fpga_dev_feature_uinit" },
|
|
{ 0x999e8297, "vfree" },
|
|
{ 0xe43988c6, "fpga_image_info_alloc" },
|
|
{ 0x3213f038, "mutex_unlock" },
|
|
{ 0x7d4412b3, "dfl_fpga_dev_ops_register" },
|
|
{ 0xeae3dfd6, "__const_udelay" },
|
|
{ 0x9833a2f8, "dfl_fpga_cdev_assign_port" },
|
|
{ 0x66cca4f9, "__x86_indirect_thunk_rcx" },
|
|
{ 0x6729d3df, "__get_user_4" },
|
|
{ 0xb43f9365, "ktime_get" },
|
|
{ 0xd6ee688f, "vmalloc" },
|
|
{ 0xb5b54b34, "_raw_spin_unlock" },
|
|
{ 0x9818a9c5, "__cpuhp_remove_state" },
|
|
{ 0xaae013c0, "dfl_fpga_set_irq_triggers" },
|
|
{ 0x53490181, "dfl_fpga_cdev_release_port" },
|
|
{ 0x8bd4d992, "platform_device_put" },
|
|
{ 0x88db9f48, "__check_object_size" },
|
|
{ 0x13c49cc2, "_copy_from_user" },
|
|
{ 0x5bc8ba21, "devm_kmalloc" },
|
|
{ 0x7098e516, "module_layout" },
|
|
};
|
|
|
|
MODULE_INFO(depends, "fpga-region,fpga-mgr,dfl,fpga-bridge");
|
|
|