-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvirtual_fan.mod.c
More file actions
47 lines (39 loc) · 1.17 KB
/
virtual_fan.mod.c
File metadata and controls
47 lines (39 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#include <linux/module.h>
#define INCLUDE_VERMAGIC
#include <linux/build-salt.h>
#include <linux/elfnote-lto.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,
};
#ifdef CONFIG_RETPOLINE
MODULE_INFO(retpoline, "Y");
#endif
static const struct modversion_info ____versions[]
__used __section("__versions") = {
{ 0xd9726f80, "module_layout" },
{ 0xe28fd47, "platform_device_unregister" },
{ 0x68de7c4, "platform_driver_unregister" },
{ 0x833a6efa, "platform_device_register_full" },
{ 0xd4415d08, "__platform_driver_register" },
{ 0x8c29242a, "device_create_file" },
{ 0x656e4a6e, "snprintf" },
{ 0xc5850110, "printk" },
{ 0xc959d152, "__stack_chk_fail" },
{ 0x79964649, "devm_hwmon_device_register_with_info" },
{ 0xbb4d6184, "devm_kmalloc" },
{ 0xbdfb6dbb, "__fentry__" },
};
MODULE_INFO(depends, "");
MODULE_INFO(srcversion, "AFE15E072735E2422387AE2");