88 lines
2.5 KiB
C
88 lines
2.5 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") = {
|
||
|
{ 0x1cfba015, "stackleak_track_stack" },
|
||
|
{ 0x69acdf38, "memcpy" },
|
||
|
{ 0x541430dd, "spi_sync" },
|
||
|
{ 0x56470118, "__warn_printk" },
|
||
|
{ 0xf8e52cb8, "devm_iio_device_alloc" },
|
||
|
{ 0xcefb0c9f, "__mutex_init" },
|
||
|
{ 0xa9ae04be, "__devm_regmap_init" },
|
||
|
{ 0xc5bafafb, "devm_regulator_bulk_get_enable" },
|
||
|
{ 0xab8f115e, "devm_regulator_get_optional" },
|
||
|
{ 0x55893967, "regulator_enable" },
|
||
|
{ 0xa7e58877, "devm_add_action" },
|
||
|
{ 0x9ca53964, "regulator_get_voltage" },
|
||
|
{ 0x58ff2664, "devm_gpiod_get_optional" },
|
||
|
{ 0xc3055d20, "usleep_range_state" },
|
||
|
{ 0x5ba72c2e, "gpiod_set_value_cansleep" },
|
||
|
{ 0xf5330e8, "devm_kmemdup" },
|
||
|
{ 0x8ae4fcaf, "device_get_next_child_node" },
|
||
|
{ 0xa41d1573, "fwnode_property_read_u32_array" },
|
||
|
{ 0x470eade0, "fwnode_property_present" },
|
||
|
{ 0x8524d0d5, "devm_get_clk_from_child" },
|
||
|
{ 0x7c9a7371, "clk_prepare" },
|
||
|
{ 0xfdf8c5fa, "dev_err_probe" },
|
||
|
{ 0x76a50ec9, "fwnode_handle_put" },
|
||
|
{ 0x7de8890f, "__devm_iio_device_register" },
|
||
|
{ 0x815588a6, "clk_enable" },
|
||
|
{ 0x556e4390, "clk_get_rate" },
|
||
|
{ 0x7545430e, "iio_enum_read" },
|
||
|
{ 0x2961fe10, "iio_enum_write" },
|
||
|
{ 0xc4dba0ad, "iio_enum_available_read" },
|
||
|
{ 0xbdfb6dbb, "__fentry__" },
|
||
|
{ 0x5b8239ca, "__x86_return_thunk" },
|
||
|
{ 0x8dc5692c, "__spi_register_driver" },
|
||
|
{ 0x24026670, "regmap_read" },
|
||
|
{ 0xa1e426d0, "regmap_write" },
|
||
|
{ 0xfaf4c094, "regulator_disable" },
|
||
|
{ 0x124bad4d, "kstrtobool" },
|
||
|
{ 0xc91ec914, "regmap_update_bits_base" },
|
||
|
{ 0x4dfa8d4b, "mutex_lock" },
|
||
|
{ 0x3213f038, "mutex_unlock" },
|
||
|
{ 0xe783e261, "sysfs_emit" },
|
||
|
{ 0x4af6ddf0, "kstrtou16" },
|
||
|
{ 0x3854774b, "kstrtoll" },
|
||
|
{ 0xb6e6d99d, "clk_disable" },
|
||
|
{ 0xb077e70a, "clk_unprepare" },
|
||
|
{ 0xca64e135, "driver_unregister" },
|
||
|
{ 0x99f2d00a, "sysfs_emit_at" },
|
||
|
{ 0x7098e516, "module_layout" },
|
||
|
};
|
||
|
|
||
|
MODULE_INFO(depends, "industrialio");
|
||
|
|
||
|
MODULE_ALIAS("spi:ltc2688");
|
||
|
MODULE_ALIAS("of:N*T*Cadi,ltc2688");
|
||
|
MODULE_ALIAS("of:N*T*Cadi,ltc2688C*");
|