can_eth_gw Gateway Module  0.1
A bidirectional CAN to Ethernet Gateway (Kernel Module)
 All Data Structures Files Functions Variables Enumerations Enumerator Macros Groups Pages
ce_gw.mod.c
Go to the documentation of this file.
1 #include <linux/module.h>
2 #include <linux/vermagic.h>
3 #include <linux/compiler.h>
4 
5 MODULE_INFO(vermagic, VERMAGIC_STRING);
6 
7 struct module __this_module
8 __attribute__((section(".gnu.linkonce.this_module"))) = {
9  .name = KBUILD_MODNAME,
10  .init = init_module,
11 #ifdef CONFIG_MODULE_UNLOAD
12  .exit = cleanup_module,
13 #endif
14  .arch = MODULE_ARCH_INIT,
15 };
16 
17 static const struct modversion_info ____versions[]
18 __used
19 __attribute__((section("__versions"))) = {
20  { 0x15b2dc7b, "module_layout" },
21  { 0xba0da3ac, "kmem_cache_destroy" },
22  { 0x68c70c2d, "kmalloc_caches" },
23  { 0xe89b6202, "genl_register_family" },
24  { 0xd13e22d2, "can_rx_register" },
25  { 0xd0d8621b, "strlen" },
26  { 0xd399c783, "genl_unregister_family" },
27  { 0xb346573b, "can_dlc2len" },
28  { 0x2e5e72cb, "dev_get_by_name" },
29  { 0x98d55d50, "__netdev_alloc_skb" },
30  { 0xdc83fa71, "netif_rx_ni" },
31  { 0x50eedeb8, "printk" },
32  { 0x142754df, "free_netdev" },
33  { 0x73bbe45a, "register_netdev" },
34  { 0xb4390f9a, "mcount" },
35  { 0xfea9e04, "nla_put" },
36  { 0x60d77aac, "kmem_cache_free" },
37  { 0x16305289, "warn_slowpath_null" },
38  { 0x97189469, "skb_push" },
39  { 0xef718862, "dev_get_by_index" },
40  { 0x4ea1ddf2, "netlink_unicast" },
41  { 0x49a68917, "init_net" },
42  { 0xcc889ca1, "can_send" },
43  { 0x4edd73be, "skb_copy_expand" },
44  { 0xd24fc802, "kmem_cache_alloc" },
45  { 0x7ec6b3e1, "__alloc_skb" },
46  { 0x616fb6fd, "alloc_can_skb" },
47  { 0x2ee332c1, "kfree_skb" },
48  { 0x835d5084, "alloc_netdev_mqs" },
49  { 0x1dd697a4, "ether_setup" },
50  { 0x2f606c22, "netlink_ack" },
51  { 0x2c9189e, "kmem_cache_alloc_trace" },
52  { 0x969b398e, "kmem_cache_create" },
53  { 0x37a0cba, "kfree" },
54  { 0x2e60bace, "memcpy" },
55  { 0x735167b4, "genlmsg_put" },
56  { 0xace3ea5f, "genl_register_ops" },
57  { 0xc87a6c36, "unregister_netdev" },
58  { 0xe2f31524, "can_rx_unregister" },
59  { 0xfb2b9f6b, "consume_skb" },
60  { 0x65e3dd17, "skb_put" },
61  { 0xe64cff2f, "__nlmsg_put" },
62  { 0xec3a6fa3, "genl_unregister_ops" },
63 };
64 
65 static const char __module_depends[]
66 __used
67 __attribute__((section(".modinfo"))) =
68 "depends=can,can-dev";
69 
70 
71 MODULE_INFO(srcversion, "267249948C023BD2D1573B7");