linux-zen-desktop/drivers/net/phy/phylink.mod.c

75 lines
2.6 KiB
C
Raw Normal View History

2023-08-30 17:31:07 +02:00
#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>
2023-10-24 12:59:35 +02:00
#ifdef CONFIG_UNWINDER_ORC
#include <asm/orc_header.h>
ORC_HEADER;
#endif
2023-08-30 17:31:07 +02:00
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,
.arch = MODULE_ARCH_INIT,
};
MODULE_INFO(intree, "Y");
#ifdef CONFIG_RETPOLINE
MODULE_INFO(retpoline, "Y");
#endif
2023-10-24 12:59:35 +02:00
KSYMTAB_FUNC(phylink_set_port_modes, "_gpl", "");
KSYMTAB_FUNC(phylink_caps_to_linkmodes, "_gpl", "");
KSYMTAB_FUNC(phylink_get_capabilities, "_gpl", "");
KSYMTAB_FUNC(phylink_validate_mask_caps, "_gpl", "");
KSYMTAB_FUNC(phylink_generic_validate, "_gpl", "");
KSYMTAB_FUNC(phylink_create, "_gpl", "");
KSYMTAB_FUNC(phylink_destroy, "_gpl", "");
KSYMTAB_FUNC(phylink_expects_phy, "_gpl", "");
KSYMTAB_FUNC(phylink_connect_phy, "_gpl", "");
KSYMTAB_FUNC(phylink_of_phy_connect, "_gpl", "");
KSYMTAB_FUNC(phylink_fwnode_phy_connect, "_gpl", "");
KSYMTAB_FUNC(phylink_disconnect_phy, "_gpl", "");
KSYMTAB_FUNC(phylink_mac_change, "_gpl", "");
KSYMTAB_FUNC(phylink_start, "_gpl", "");
KSYMTAB_FUNC(phylink_stop, "_gpl", "");
KSYMTAB_FUNC(phylink_suspend, "_gpl", "");
KSYMTAB_FUNC(phylink_resume, "_gpl", "");
KSYMTAB_FUNC(phylink_ethtool_get_wol, "_gpl", "");
KSYMTAB_FUNC(phylink_ethtool_set_wol, "_gpl", "");
KSYMTAB_FUNC(phylink_ethtool_ksettings_get, "_gpl", "");
KSYMTAB_FUNC(phylink_ethtool_ksettings_set, "_gpl", "");
KSYMTAB_FUNC(phylink_ethtool_nway_reset, "_gpl", "");
KSYMTAB_FUNC(phylink_ethtool_get_pauseparam, "_gpl", "");
KSYMTAB_FUNC(phylink_ethtool_set_pauseparam, "_gpl", "");
KSYMTAB_FUNC(phylink_get_eee_err, "_gpl", "");
KSYMTAB_FUNC(phylink_init_eee, "_gpl", "");
KSYMTAB_FUNC(phylink_ethtool_get_eee, "_gpl", "");
KSYMTAB_FUNC(phylink_ethtool_set_eee, "_gpl", "");
KSYMTAB_FUNC(phylink_mii_ioctl, "_gpl", "");
KSYMTAB_FUNC(phylink_speed_down, "_gpl", "");
KSYMTAB_FUNC(phylink_speed_up, "_gpl", "");
KSYMTAB_FUNC(phylink_resolve_c73, "_gpl", "");
KSYMTAB_FUNC(phylink_decode_usxgmii_word, "_gpl", "");
KSYMTAB_FUNC(phylink_mii_c22_pcs_decode_state, "_gpl", "");
KSYMTAB_FUNC(phylink_mii_c22_pcs_get_state, "_gpl", "");
KSYMTAB_FUNC(phylink_mii_c22_pcs_encode_advertisement, "_gpl", "");
KSYMTAB_FUNC(phylink_mii_c22_pcs_config, "_gpl", "");
KSYMTAB_FUNC(phylink_mii_c22_pcs_an_restart, "_gpl", "");
KSYMTAB_FUNC(phylink_mii_c45_pcs_get_state, "_gpl", "");
2023-08-30 17:31:07 +02:00
MODULE_INFO(depends, "");