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
55
56
57
58
59
60
61
62
63
64
65
66
67
|
#include <linux/module.h>
#include <linux/vermagic.h>
#include <linux/compiler.h>
MODULE_INFO(vermagic, VERMAGIC_STRING);
struct module __this_module
__attribute__((section(".gnu.linkonce.this_module"))) = {
.name = KBUILD_MODNAME,
.init = init_module,
#ifdef CONFIG_MODULE_UNLOAD
.exit = cleanup_module,
#endif
};
static const struct modversion_info ____versions[]
__attribute_used__
__attribute__((section("__versions"))) = {
{ 0x8fc02246, "struct_module" },
{ 0xc9f22234, "register_sound_mixer" },
{ 0xb2c62f5a, "ac97_probe_codec" },
{ 0xc2dfec22, "register_sound_dsp" },
{ 0x26e96637, "request_irq" },
{ 0x1a1a4f09, "__request_region" },
{ 0xea153c31, "pci_set_master" },
{ 0x9eac042a, "__ioremap" },
{ 0x8523fd53, "kmem_cache_alloc" },
{ 0xb13d73c9, "malloc_sizes" },
{ 0x2c4b9e73, "pci_set_dma_mask" },
{ 0x37eecf7e, "pci_enable_device" },
{ 0xe663a2e5, "__pci_register_driver" },
{ 0x2da418b5, "copy_to_user" },
{ 0xa03d6a57, "__get_user_4" },
{ 0xb2fd5ceb, "__put_user_4" },
{ 0xf2a644fb, "copy_from_user" },
{ 0x5dee79a9, "interruptible_sleep_on_timeout" },
{ 0x1159ca62, "remap_pfn_range" },
{ 0x9941ccb8, "free_pages" },
{ 0x107d6ba3, "__get_free_pages" },
{ 0xf70365bd, "dma_alloc_coherent" },
{ 0xeae3dfd6, "__const_udelay" },
{ 0xc281c899, "__wake_up" },
{ 0x60a4461c, "__up_wakeup" },
{ 0x96b27088, "__down_failed" },
{ 0xc2c90c01, "dma_free_coherent" },
{ 0x8f282243, "mem_map" },
{ 0x9ce3050c, "remove_wait_queue" },
{ 0x17d59d01, "schedule_timeout" },
{ 0xab8f2178, "add_wait_queue" },
{ 0xffd5a395, "default_wake_function" },
{ 0xcd083b10, "unregister_sound_dsp" },
{ 0x37a0cba, "kfree" },
{ 0x7afc9d8a, "unregister_sound_mixer" },
{ 0xedc03953, "iounmap" },
{ 0xd49501d4, "__release_region" },
{ 0x865ebccd, "ioport_resource" },
{ 0xf20dabd8, "free_irq" },
{ 0xa4536ca, "pci_unregister_driver" },
{ 0x1b7d4074, "printk" },
};
static const char __module_depends[]
__attribute_used__
__attribute__((section(".modinfo"))) =
"depends=soundcore,ac97_codec";
MODULE_ALIAS("pci:v00001039d00007019sv*sd*bc*sc*i*");
|