67 lines
2.0 KiB
C
67 lines
2.0 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(xhci_run, "_gpl", "");
|
|
KSYMTAB_FUNC(xhci_stop, "_gpl", "");
|
|
KSYMTAB_FUNC(xhci_shutdown, "_gpl", "");
|
|
KSYMTAB_FUNC(xhci_suspend, "_gpl", "");
|
|
KSYMTAB_FUNC(xhci_resume, "_gpl", "");
|
|
KSYMTAB_FUNC(xhci_get_endpoint_index, "_gpl", "");
|
|
KSYMTAB_FUNC(xhci_drop_endpoint, "_gpl", "");
|
|
KSYMTAB_FUNC(xhci_add_endpoint, "_gpl", "");
|
|
KSYMTAB_FUNC(xhci_check_bandwidth, "_gpl", "");
|
|
KSYMTAB_FUNC(xhci_reset_bandwidth, "_gpl", "");
|
|
KSYMTAB_FUNC(xhci_update_hub_device, "_gpl", "");
|
|
KSYMTAB_FUNC(xhci_gen_setup, "_gpl", "");
|
|
KSYMTAB_FUNC(xhci_init_driver, "_gpl", "");
|
|
KSYMTAB_FUNC(xhci_get_ep_ctx, "_gpl", "");
|
|
KSYMTAB_FUNC(xhci_ext_cap_init, "_gpl", "");
|
|
KSYMTAB_FUNC(xhci_msi_irq, "_gpl", "");
|
|
KSYMTAB_FUNC(xhci_port_state_to_neutral, "_gpl", "");
|
|
KSYMTAB_FUNC(xhci_find_slot_id_by_port, "_gpl", "");
|
|
KSYMTAB_FUNC(xhci_hub_control, "_gpl", "");
|
|
KSYMTAB_FUNC(xhci_dbg_trace, "_gpl", "");
|
|
KSYMTAB_DATA(__tracepoint_xhci_dbg_quirks, "_gpl", "");
|
|
KSYMTAB_FUNC(__traceiter_xhci_dbg_quirks, "_gpl", "");
|
|
KSYMTAB_DATA(__SCK__tp_func_xhci_dbg_quirks, "_gpl", "");
|
|
KSYMTAB_FUNC(__SCT__tp_func_xhci_dbg_quirks, "_gpl", "");
|
|
KSYMTAB_DATA(__tracepoint_xhci_dbg_init, "_gpl", "");
|
|
KSYMTAB_FUNC(__traceiter_xhci_dbg_init, "_gpl", "");
|
|
KSYMTAB_DATA(__SCK__tp_func_xhci_dbg_init, "_gpl", "");
|
|
KSYMTAB_FUNC(__SCT__tp_func_xhci_dbg_init, "_gpl", "");
|
|
|
|
MODULE_INFO(depends, "");
|
|
|