-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmyled.mod.c
54 lines (46 loc) · 1.37 KB
/
myled.mod.c
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
48
49
50
51
52
53
54
#include <linux/build-salt.h>
#include <linux/module.h>
#include <linux/vermagic.h>
#include <linux/compiler.h>
BUILD_SALT;
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) = {
{ 0xfe9bc451, "module_layout" },
{ 0xedc03953, "iounmap" },
{ 0x6091b333, "unregister_chrdev_region" },
{ 0x5cf9db0a, "class_destroy" },
{ 0x7e1f9c52, "device_destroy" },
{ 0x58055dbb, "cdev_del" },
{ 0x3bae1a24, "device_create" },
{ 0x92f847a3, "__class_create" },
{ 0x21872aaa, "cdev_add" },
{ 0xe7bd1d8b, "cdev_init" },
{ 0xc5850110, "printk" },
{ 0xe3ec2f2b, "alloc_chrdev_region" },
{ 0x6b4b2933, "__ioremap" },
{ 0xb2ead97c, "kimage_vaddr" },
{ 0xdecd0b29, "__stack_chk_fail" },
{ 0xd697e69a, "trace_hardirqs_on" },
{ 0x12a4e128, "__arch_copy_from_user" },
{ 0xec3d2e1b, "trace_hardirqs_off" },
{ 0x3d8560e4, "cpu_hwcaps" },
{ 0x4b50cb71, "cpu_hwcap_keys" },
{ 0x14b89635, "arm64_const_caps_ready" },
{ 0x1fdc7df2, "_mcount" },
};
MODULE_INFO(depends, "");
MODULE_INFO(srcversion, "852FFCE370F39227B0AACC1");