69 lines
1.8 KiB
C
69 lines
1.8 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>
|
||
|
|
||
|
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
|
||
|
|
||
|
|
||
|
static const struct modversion_info ____versions[]
|
||
|
__used __section("__versions") = {
|
||
|
{ 0x37a0cba, "kfree" },
|
||
|
{ 0xfcec0987, "enable_irq" },
|
||
|
{ 0x58ff2664, "devm_gpiod_get_optional" },
|
||
|
{ 0xbdfb6dbb, "__fentry__" },
|
||
|
{ 0xe878d310, "wl1251_init_ieee80211" },
|
||
|
{ 0x122c3a7e, "_printk" },
|
||
|
{ 0x7522f3ba, "irq_modify_status" },
|
||
|
{ 0xd3717b82, "devm_regulator_get" },
|
||
|
{ 0xbc477a2, "irq_set_irq_type" },
|
||
|
{ 0x541430dd, "spi_sync" },
|
||
|
{ 0xca64e135, "driver_unregister" },
|
||
|
{ 0xfb578fc5, "memset" },
|
||
|
{ 0x5b8239ca, "__x86_return_thunk" },
|
||
|
{ 0xdaf4cf0a, "spi_setup" },
|
||
|
{ 0x8dc5692c, "__spi_register_driver" },
|
||
|
{ 0xc8d7edbb, "wl1251_free_hw" },
|
||
|
{ 0xba55d23e, "crc7_be" },
|
||
|
{ 0xfaf4c094, "regulator_disable" },
|
||
|
{ 0xac4a1f46, "kmalloc_trace" },
|
||
|
{ 0x66f270f2, "ieee80211_queue_work" },
|
||
|
{ 0xb2428d21, "gpiod_set_consumer_name" },
|
||
|
{ 0x5b94ad75, "kmalloc_caches" },
|
||
|
{ 0x3ce4ca6f, "disable_irq" },
|
||
|
{ 0x55893967, "regulator_enable" },
|
||
|
{ 0x52b1e45, "devm_request_threaded_irq" },
|
||
|
{ 0x61eb8b81, "wl1251_alloc_hw" },
|
||
|
{ 0x5bc8ba21, "devm_kmalloc" },
|
||
|
{ 0x1cfba015, "stackleak_track_stack" },
|
||
|
{ 0xc7fb764b, "ieee80211_free_hw" },
|
||
|
{ 0x5ba72c2e, "gpiod_set_value_cansleep" },
|
||
|
{ 0x7098e516, "module_layout" },
|
||
|
};
|
||
|
|
||
|
MODULE_INFO(depends, "wl1251,crc7,mac80211");
|
||
|
|