77 lines
2.3 KiB
C
77 lines
2.3 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") = {
|
|
{ 0x69acdf38, "memcpy" },
|
|
{ 0x56470118, "__warn_printk" },
|
|
{ 0xa6257a2f, "complete" },
|
|
{ 0xca64e135, "driver_unregister" },
|
|
{ 0xc58d215c, "serdev_device_write" },
|
|
{ 0xf02aa937, "wait_for_completion_interruptible_timeout" },
|
|
{ 0x4dfa8d4b, "mutex_lock" },
|
|
{ 0x3213f038, "mutex_unlock" },
|
|
{ 0xdacc633f, "iio_trigger_notify_done" },
|
|
{ 0xed9670b0, "iio_get_time_ns" },
|
|
{ 0xae601b8, "iio_push_to_buffers" },
|
|
{ 0xf8e52cb8, "devm_iio_device_alloc" },
|
|
{ 0xcefb0c9f, "__mutex_init" },
|
|
{ 0x608741b5, "__init_swait_queue_head" },
|
|
{ 0x55245f7e, "devm_serdev_device_open" },
|
|
{ 0x7321825a, "serdev_device_set_baudrate" },
|
|
{ 0x742451b, "serdev_device_set_flow_control" },
|
|
{ 0x6780435b, "serdev_device_set_parity" },
|
|
{ 0x9040242d, "_dev_err" },
|
|
{ 0xa7e58877, "devm_add_action" },
|
|
{ 0x2b3c5b17, "devm_iio_triggered_buffer_setup_ext" },
|
|
{ 0x7de8890f, "__devm_iio_device_register" },
|
|
{ 0xa4214b55, "serdev_device_write_wakeup" },
|
|
{ 0xbdfb6dbb, "__fentry__" },
|
|
{ 0xe8a6a236, "__serdev_device_driver_register" },
|
|
{ 0x5b8239ca, "__x86_return_thunk" },
|
|
{ 0x7098e516, "module_layout" },
|
|
};
|
|
|
|
MODULE_INFO(depends, "industrialio,industrialio-triggered-buffer");
|
|
|
|
MODULE_ALIAS("of:N*T*Cplantower,pms1003");
|
|
MODULE_ALIAS("of:N*T*Cplantower,pms1003C*");
|
|
MODULE_ALIAS("of:N*T*Cplantower,pms3003");
|
|
MODULE_ALIAS("of:N*T*Cplantower,pms3003C*");
|
|
MODULE_ALIAS("of:N*T*Cplantower,pms5003");
|
|
MODULE_ALIAS("of:N*T*Cplantower,pms5003C*");
|
|
MODULE_ALIAS("of:N*T*Cplantower,pms6003");
|
|
MODULE_ALIAS("of:N*T*Cplantower,pms6003C*");
|
|
MODULE_ALIAS("of:N*T*Cplantower,pms7003");
|
|
MODULE_ALIAS("of:N*T*Cplantower,pms7003C*");
|
|
MODULE_ALIAS("of:N*T*Cplantower,pmsa003");
|
|
MODULE_ALIAS("of:N*T*Cplantower,pmsa003C*");
|