57 lines
1.5 KiB
C
57 lines
1.5 KiB
C
#include <linux/module.h>
|
|
#define INCLUDE_VERMAGIC
|
|
#include <linux/build-salt.h>
|
|
#include <linux/elfnote-lto.h>
|
|
#include <linux/export-internal.h>
|
|
#include <linux/vermagic.h>
|
|
#include <linux/compiler.h>
|
|
|
|
#ifdef CONFIG_UNWINDER_ORC
|
|
#include <asm/orc_header.h>
|
|
ORC_HEADER;
|
|
#endif
|
|
|
|
BUILD_SALT;
|
|
BUILD_LTO_INFO;
|
|
|
|
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,
|
|
};
|
|
|
|
MODULE_INFO(intree, "Y");
|
|
|
|
#ifdef CONFIG_RETPOLINE
|
|
MODULE_INFO(retpoline, "Y");
|
|
#endif
|
|
|
|
KSYMTAB_FUNC(wpan_phy_find, "", "");
|
|
KSYMTAB_FUNC(wpan_phy_for_each, "", "");
|
|
KSYMTAB_FUNC(wpan_phy_new, "", "");
|
|
KSYMTAB_FUNC(wpan_phy_register, "", "");
|
|
KSYMTAB_FUNC(wpan_phy_unregister, "", "");
|
|
KSYMTAB_FUNC(wpan_phy_free, "", "");
|
|
KSYMTAB_FUNC(ieee802154_hdr_push, "_gpl", "");
|
|
KSYMTAB_FUNC(ieee802154_mac_cmd_push, "_gpl", "");
|
|
KSYMTAB_FUNC(ieee802154_beacon_push, "_gpl", "");
|
|
KSYMTAB_FUNC(ieee802154_hdr_pull, "_gpl", "");
|
|
KSYMTAB_FUNC(ieee802154_mac_cmd_pl_pull, "_gpl", "");
|
|
KSYMTAB_FUNC(ieee802154_hdr_peek_addrs, "_gpl", "");
|
|
KSYMTAB_FUNC(ieee802154_hdr_peek, "_gpl", "");
|
|
KSYMTAB_FUNC(ieee802154_max_payload, "_gpl", "");
|
|
KSYMTAB_FUNC(nl802154_scan_event, "_gpl", "");
|
|
KSYMTAB_FUNC(nl802154_scan_started, "_gpl", "");
|
|
KSYMTAB_FUNC(nl802154_scan_done, "_gpl", "");
|
|
KSYMTAB_FUNC(nl802154_beaconing_done, "_gpl", "");
|
|
|
|
MODULE_INFO(depends, "");
|
|
|