74 lines
2.0 KiB
C
74 lines
2.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") = {
|
|
{ 0xe9c322a0, "pcpu_hot" },
|
|
{ 0x45eda959, "spk_get_var" },
|
|
{ 0xd93829dd, "speakup_info" },
|
|
{ 0x34db050b, "_raw_spin_lock_irqsave" },
|
|
{ 0xd35cce70, "_raw_spin_unlock_irqrestore" },
|
|
{ 0x7f02188f, "__msecs_to_jiffies" },
|
|
{ 0x15ba50a6, "jiffies" },
|
|
{ 0xb3f7646e, "kthread_should_stop" },
|
|
{ 0xd5fd90f1, "prepare_to_wait" },
|
|
{ 0x8ddd8aad, "schedule_timeout" },
|
|
{ 0x92540fbf, "finish_wait" },
|
|
{ 0x76d40046, "synth_buffer_skip_nonlatin1" },
|
|
{ 0x41a160e5, "synth_buffer_empty" },
|
|
{ 0xaadb0612, "synth_buffer_peek" },
|
|
{ 0x84dad068, "synth_buffer_getc" },
|
|
{ 0x349cba85, "strchr" },
|
|
{ 0xf1606ecc, "synth_add" },
|
|
{ 0x9ae52dc8, "synth_remove" },
|
|
{ 0xe2964344, "__wake_up" },
|
|
{ 0xa7940382, "param_ops_int" },
|
|
{ 0x64757c3f, "param_ops_short" },
|
|
{ 0xe310cc93, "param_ops_charp" },
|
|
{ 0xb0ff8dc5, "spk_ttyio_ops" },
|
|
{ 0xfb2b1f07, "spk_ttyio_synth_probe" },
|
|
{ 0x240584a5, "spk_ttyio_release" },
|
|
{ 0xf7004fe9, "spk_ttyio_synth_immediate" },
|
|
{ 0x100cbf92, "spk_synth_is_alive_restart" },
|
|
{ 0x3343fdeb, "spk_var_show" },
|
|
{ 0x2245d236, "spk_var_store" },
|
|
{ 0xbdfb6dbb, "__fentry__" },
|
|
{ 0x5b8239ca, "__x86_return_thunk" },
|
|
{ 0x65487097, "__x86_indirect_thunk_rax" },
|
|
{ 0xad73041f, "autoremove_wake_function" },
|
|
{ 0x7098e516, "module_layout" },
|
|
};
|
|
|
|
MODULE_INFO(depends, "speakup");
|
|
|
|
|
|
MODULE_INFO(srcversion, "404E4B9DB828EFAFFD00A5F");
|