92 lines
2.7 KiB
C
92 lines
2.7 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") = {
|
|
{ 0x4dfa8d4b, "mutex_lock" },
|
|
{ 0xf23fcb99, "__kfifo_in" },
|
|
{ 0x3213f038, "mutex_unlock" },
|
|
{ 0xbc18ab62, "kill_fasync" },
|
|
{ 0xe2964344, "__wake_up" },
|
|
{ 0xb024ade4, "_dev_warn" },
|
|
{ 0xa19b956, "__stack_chk_fail" },
|
|
{ 0x62f7e207, "down_read_killable" },
|
|
{ 0x89940875, "mutex_lock_interruptible" },
|
|
{ 0x4578f528, "__kfifo_to_user" },
|
|
{ 0x53b954a2, "up_read" },
|
|
{ 0xe2c17b5d, "__SCT__might_resched" },
|
|
{ 0xfe487975, "init_wait_entry" },
|
|
{ 0x1000e51, "schedule" },
|
|
{ 0x8c26d495, "prepare_to_wait_event" },
|
|
{ 0x92540fbf, "finish_wait" },
|
|
{ 0x93daafc9, "fasync_helper" },
|
|
{ 0x2d97b4db, "platform_driver_unregister" },
|
|
{ 0xc505f3b6, "platform_device_unregister" },
|
|
{ 0x40a9b349, "vzalloc" },
|
|
{ 0xcefb0c9f, "__mutex_init" },
|
|
{ 0xd9a5ea54, "__init_waitqueue_head" },
|
|
{ 0x57bc19d2, "down_write" },
|
|
{ 0xce807a25, "up_write" },
|
|
{ 0x78806cbf, "stream_open" },
|
|
{ 0x296695f, "refcount_warn_saturate" },
|
|
{ 0x999e8297, "vfree" },
|
|
{ 0x37a0cba, "kfree" },
|
|
{ 0x668b19a1, "down_read" },
|
|
{ 0xc44458a7, "__ssam_notifier_unregister" },
|
|
{ 0xdaf7bb9c, "misc_deregister" },
|
|
{ 0x76e66eab, "ssam_client_bind" },
|
|
{ 0x5b94ad75, "kmalloc_caches" },
|
|
{ 0xac4a1f46, "kmalloc_trace" },
|
|
{ 0x7b4da6ff, "__init_rwsem" },
|
|
{ 0x9942a4f3, "misc_register" },
|
|
{ 0x13c49cc2, "_copy_from_user" },
|
|
{ 0x3360fe1e, "ssam_notifier_register" },
|
|
{ 0x6d2d887, "ssam_controller_event_enable" },
|
|
{ 0xed41c43a, "ssam_controller_event_disable" },
|
|
{ 0x5d49debb, "ssam_request_do_sync" },
|
|
{ 0x5a4896a8, "__put_user_2" },
|
|
{ 0xeb233a45, "__kmalloc" },
|
|
{ 0x88db9f48, "__check_object_size" },
|
|
{ 0x6b10bee1, "_copy_to_user" },
|
|
{ 0xbdfb6dbb, "__fentry__" },
|
|
{ 0x564043a0, "platform_device_alloc" },
|
|
{ 0x37a96071, "platform_device_add" },
|
|
{ 0x8bd4d992, "platform_device_put" },
|
|
{ 0x5b8239ca, "__x86_return_thunk" },
|
|
{ 0x2f5507b8, "__platform_driver_register" },
|
|
{ 0x597fd9bb, "platform_device_del" },
|
|
{ 0x65487097, "__x86_indirect_thunk_rax" },
|
|
{ 0x7098e516, "module_layout" },
|
|
};
|
|
|
|
MODULE_INFO(depends, "surface_aggregator");
|
|
|