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,
|
|
|
|
.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(snd_hdac_ext_bus_init, "_gpl", "");
|
|
|
|
KSYMTAB_FUNC(snd_hdac_ext_bus_exit, "_gpl", "");
|
|
|
|
KSYMTAB_FUNC(snd_hdac_ext_bus_device_remove, "_gpl", "");
|
|
|
|
KSYMTAB_FUNC(snd_hda_ext_driver_register, "_gpl", "");
|
|
|
|
KSYMTAB_FUNC(snd_hda_ext_driver_unregister, "_gpl", "");
|
|
|
|
KSYMTAB_FUNC(snd_hdac_ext_bus_ppcap_enable, "_gpl", "");
|
|
|
|
KSYMTAB_FUNC(snd_hdac_ext_bus_ppcap_int_enable, "_gpl", "");
|
|
|
|
KSYMTAB_FUNC(snd_hdac_ext_bus_get_ml_capabilities, "_gpl", "");
|
|
|
|
KSYMTAB_FUNC(snd_hdac_ext_link_free_all, "_gpl", "");
|
|
|
|
KSYMTAB_FUNC(snd_hdac_ext_bus_get_hlink_by_addr, "_gpl", "");
|
|
|
|
KSYMTAB_FUNC(snd_hdac_ext_bus_get_hlink_by_name, "_gpl", "");
|
|
|
|
KSYMTAB_FUNC(snd_hdac_ext_bus_link_power_up, "_gpl", "");
|
|
|
|
KSYMTAB_FUNC(snd_hdac_ext_bus_link_power_down, "_gpl", "");
|
|
|
|
KSYMTAB_FUNC(snd_hdac_ext_bus_link_power_up_all, "_gpl", "");
|
|
|
|
KSYMTAB_FUNC(snd_hdac_ext_bus_link_power_down_all, "_gpl", "");
|
|
|
|
KSYMTAB_FUNC(snd_hdac_ext_bus_link_set_stream_id, "_gpl", "");
|
|
|
|
KSYMTAB_FUNC(snd_hdac_ext_bus_link_clear_stream_id, "_gpl", "");
|
|
|
|
KSYMTAB_FUNC(snd_hdac_ext_bus_link_get, "_gpl", "");
|
|
|
|
KSYMTAB_FUNC(snd_hdac_ext_bus_link_put, "_gpl", "");
|
|
|
|
KSYMTAB_FUNC(snd_hdac_ext_bus_link_power, "_gpl", "");
|
|
|
|
KSYMTAB_FUNC(snd_hdac_ext_stream_init_all, "_gpl", "");
|
|
|
|
KSYMTAB_FUNC(snd_hdac_ext_stream_free_all, "_gpl", "");
|
|
|
|
KSYMTAB_FUNC(snd_hdac_ext_stream_decouple_locked, "_gpl", "");
|
|
|
|
KSYMTAB_FUNC(snd_hdac_ext_stream_decouple, "_gpl", "");
|
|
|
|
KSYMTAB_FUNC(snd_hdac_ext_stream_start, "_gpl", "");
|
|
|
|
KSYMTAB_FUNC(snd_hdac_ext_stream_clear, "_gpl", "");
|
|
|
|
KSYMTAB_FUNC(snd_hdac_ext_stream_reset, "_gpl", "");
|
|
|
|
KSYMTAB_FUNC(snd_hdac_ext_stream_setup, "_gpl", "");
|
|
|
|
KSYMTAB_FUNC(snd_hdac_ext_stream_assign, "_gpl", "");
|
|
|
|
KSYMTAB_FUNC(snd_hdac_ext_stream_release, "_gpl", "");
|
|
|
|
KSYMTAB_FUNC(snd_hdac_ext_cstream_assign, "_gpl", "");
|
|
|
|
|
2023-08-30 17:31:07 +02:00
|
|
|
MODULE_INFO(depends, "snd-hda-core");
|
|
|
|
|