mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-08 13:54:59 +02:00
e2813918b9
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17665 3c298f89-4303-0410-b956-a3cf2f4a3e73
22 lines
444 B
C
22 lines
444 B
C
#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 char __module_depends[]
|
|
__used
|
|
__attribute__((section(".modinfo"))) =
|
|
"depends=";
|
|
|