45 lines
1.1 KiB
C
45 lines
1.1 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,
|
|
.arch = MODULE_ARCH_INIT,
|
|
};
|
|
|
|
MODULE_INFO(intree, "Y");
|
|
|
|
#ifdef CONFIG_RETPOLINE
|
|
MODULE_INFO(retpoline, "Y");
|
|
#endif
|
|
|
|
SYMBOL_CRC(__regmap_init_sccb, 0xe55c78ab, "_gpl");
|
|
SYMBOL_CRC(__devm_regmap_init_sccb, 0x3b059724, "_gpl");
|
|
|
|
static const struct modversion_info ____versions[]
|
|
__used __section("__versions") = {
|
|
{ 0xbdfb6dbb, "__fentry__" },
|
|
{ 0x65487097, "__x86_indirect_thunk_rax" },
|
|
{ 0xc9a896fb, "__i2c_smbus_xfer" },
|
|
{ 0x5b8239ca, "__x86_return_thunk" },
|
|
{ 0xa19b956, "__stack_chk_fail" },
|
|
{ 0x71153d67, "i2c_smbus_write_byte_data" },
|
|
{ 0xf3000506, "__regmap_init" },
|
|
{ 0xa9ae04be, "__devm_regmap_init" },
|
|
{ 0x7098e516, "module_layout" },
|
|
};
|
|
|
|
MODULE_INFO(depends, "");
|
|
|