#include #include #include 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"); KSYMTAB_FUNC(sdw_amd_probe, "", "SOUNDWIRE_AMD_INIT"); KSYMTAB_FUNC(sdw_amd_exit, "", "SOUNDWIRE_AMD_INIT"); KSYMTAB_FUNC(sdw_amd_get_slave_info, "", "SOUNDWIRE_AMD_INIT"); MODULE_INFO(depends, "soundwire-bus,soundwire-generic-allocation,snd-pcm,snd-soc-core"); MODULE_INFO(srcversion, "BB42138B0E4A2E82A93BA8B");