47 lines
1.2 KiB
C
47 lines
1.2 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(iio_triggered_buffer_setup_ext, 0xf6cab0c7, "");
|
|
SYMBOL_CRC(iio_triggered_buffer_cleanup, 0xa8086b33, "");
|
|
SYMBOL_CRC(devm_iio_triggered_buffer_setup_ext, 0x2b3c5b17, "_gpl");
|
|
|
|
static const struct modversion_info ____versions[]
|
|
__used __section("__versions") = {
|
|
{ 0xbdfb6dbb, "__fentry__" },
|
|
{ 0x62fbb3a5, "iio_kfifo_allocate" },
|
|
{ 0xaee2cd28, "iio_device_id" },
|
|
{ 0x364dfefe, "iio_alloc_pollfunc" },
|
|
{ 0x5e1375ed, "iio_device_attach_buffer" },
|
|
{ 0x5b8239ca, "__x86_return_thunk" },
|
|
{ 0x19b00d43, "iio_kfifo_free" },
|
|
{ 0xefb967ee, "iio_dealloc_pollfunc" },
|
|
{ 0xa7e58877, "devm_add_action" },
|
|
{ 0x7098e516, "module_layout" },
|
|
};
|
|
|
|
MODULE_INFO(depends, "kfifo_buf,industrialio");
|
|
|