linux-zen-desktop/drivers/char/tpm/tpm_tis_spi.mod.c

81 lines
2.3 KiB
C
Raw Normal View History

2023-08-30 17:31:07 +02:00
#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") = {
{ 0xc3055d20, "usleep_range_state" },
{ 0xbdfb6dbb, "__fentry__" },
{ 0xdeb3cad9, "spi_bus_lock" },
{ 0x65487097, "__x86_indirect_thunk_rax" },
{ 0xad6118e7, "tpm_chip_unregister" },
{ 0xa19b956, "__stack_chk_fail" },
{ 0xa8d1337e, "_dev_info" },
{ 0x541430dd, "spi_sync" },
{ 0x55bd5f9b, "device_property_read_u8_array" },
{ 0xe08848ee, "tpm_tis_remove" },
{ 0x4dfa8d4b, "mutex_lock" },
{ 0xca64e135, "driver_unregister" },
{ 0xcefb0c9f, "__mutex_init" },
{ 0xb024ade4, "_dev_warn" },
{ 0x5b8239ca, "__x86_return_thunk" },
{ 0x12f73836, "tpm_tis_core_init" },
{ 0x15ba50a6, "jiffies" },
{ 0x3213f038, "mutex_unlock" },
{ 0x9cad27b2, "spi_sync_locked" },
{ 0x8dc5692c, "__spi_register_driver" },
{ 0xfccdf256, "spi_bus_unlock" },
{ 0x52b1e45, "devm_request_threaded_irq" },
{ 0x4a3ad70e, "wait_for_completion_timeout" },
{ 0x5bc8ba21, "devm_kmalloc" },
{ 0xa6257a2f, "complete" },
{ 0x1cfba015, "stackleak_track_stack" },
{ 0x608741b5, "__init_swait_queue_head" },
{ 0xd96a4600, "spi_get_device_id" },
{ 0x7098e516, "module_layout" },
};
MODULE_INFO(depends, "");
MODULE_ALIAS("spi:st33htpm-spi");
MODULE_ALIAS("spi:slb9670");
MODULE_ALIAS("spi:tpm_tis_spi");
MODULE_ALIAS("spi:tpm_tis-spi");
MODULE_ALIAS("spi:cr50");
MODULE_ALIAS("of:N*T*Cst,st33htpm-spi");
MODULE_ALIAS("of:N*T*Cst,st33htpm-spiC*");
MODULE_ALIAS("of:N*T*Cinfineon,slb9670");
MODULE_ALIAS("of:N*T*Cinfineon,slb9670C*");
MODULE_ALIAS("of:N*T*Ctcg,tpm_tis-spi");
MODULE_ALIAS("of:N*T*Ctcg,tpm_tis-spiC*");
MODULE_ALIAS("of:N*T*Cgoogle,cr50");
MODULE_ALIAS("of:N*T*Cgoogle,cr50C*");
MODULE_ALIAS("acpi*:SMO0768:*");