File: et131x.mod.c

package info (click to toggle)
et131x 1.2.3-2-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 5,440 kB
  • ctags: 2,577
  • sloc: ansic: 11,515; makefile: 146
file content (86 lines) | stat: -rw-r--r-- 2,722 bytes parent folder | download
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#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
 .arch = MODULE_ARCH_INIT,
};

static const struct modversion_info ____versions[]
__attribute_used__
__attribute__((section("__versions"))) = {
	{ 0xe189b8a7, "struct_module" },
	{ 0xee89ada, "kmem_cache_destroy" },
	{ 0xcba6c63f, "kmalloc_caches" },
	{ 0xa81bd1a3, "pci_bus_read_config_byte" },
	{ 0x12da5bb2, "__kmalloc" },
	{ 0x83e84bbe, "__mod_timer" },
	{ 0xafd868d4, "mem_map" },
	{ 0xbffb9280, "alloc_etherdev" },
	{ 0x79aa04a2, "get_random_bytes" },
	{ 0x1f592d9, "pci_disable_device" },
	{ 0xb283aaa3, "netif_carrier_on" },
	{ 0xf32d2678, "schedule_work" },
	{ 0x704b885e, "netif_carrier_off" },
	{ 0xeae3dfd6, "__const_udelay" },
	{ 0x5652c5, "pci_release_regions" },
	{ 0x6e185827, "_spin_lock_irqsave" },
	{ 0x7d11c268, "jiffies" },
	{ 0x30e55896, "netif_rx" },
	{ 0xb0a5700b, "pci_set_master" },
	{ 0xcda10c1, "del_timer_sync" },
	{ 0xcd76ca2a, "pci_set_dma_mask" },
	{ 0x1b7d4074, "printk" },
	{ 0x9a26c616, "register_netdev" },
	{ 0xedac2924, "dma_free_coherent" },
	{ 0x5e54e522, "kmem_cache_free" },
	{ 0xa46dc984, "_spin_unlock_irqrestore" },
	{ 0xa1c9f3d, "mod_timer" },
	{ 0x10ee9eba, "dev_kfree_skb_any" },
	{ 0xa2742773, "dma_alloc_coherent" },
	{ 0x1288d814, "pci_find_capability" },
	{ 0x52726d9, "skb_over_panic" },
	{ 0x7dceceac, "capable" },
	{ 0xd5976294, "kmem_cache_alloc" },
	{ 0x17e659b2, "__alloc_skb" },
	{ 0x3762cb6e, "ioremap_nocache" },
	{ 0x646688df, "pci_bus_read_config_dword" },
	{ 0x72216fa9, "param_get_uint" },
	{ 0x2cf190e3, "request_irq" },
	{ 0x6b2dc060, "dump_stack" },
	{ 0xc5de623c, "eth_type_trans" },
	{ 0x8e7e1456, "pci_unregister_driver" },
	{ 0x1c2749a4, "kmem_cache_create" },
	{ 0x679a54f2, "init_timer" },
	{ 0x5eb79eb8, "pci_bus_write_config_byte" },
	{ 0x37a0cba, "kfree" },
	{ 0x2e60bace, "memcpy" },
	{ 0x57078487, "pci_request_regions" },
	{ 0x8abac70a, "param_set_uint" },
	{ 0xedc03953, "iounmap" },
	{ 0x4d70b335, "__pci_register_driver" },
	{ 0x941cad9d, "unregister_netdev" },
	{ 0x60d9227b, "__netif_schedule" },
	{ 0xcd2a0967, "pci_enable_device" },
	{ 0x89acfca9, "pci_set_consistent_dma_mask" },
	{ 0xf20dabd8, "free_irq" },
	{ 0x2249bb58, "pci_save_state" },
};

static const char __module_depends[]
__attribute_used__
__attribute__((section(".modinfo"))) =
"depends=";

MODULE_ALIAS("pci:v000011C1d0000ED00sv*sd*bc*sc*i*");
MODULE_ALIAS("pci:v000011C1d0000ED01sv*sd*bc*sc*i*");

MODULE_INFO(srcversion, "7C16BAD84394CD9B7550112");