]> Git Repo - J-linux.git/blob - scripts/module-common.c
Merge tag '6.13-rc-part1-SMB3-client-fixes' of git://git.samba.org/sfrench/cifs-2.6
[J-linux.git] / scripts / module-common.c
1 // SPDX-License-Identifier: GPL-2.0
2
3 #include <linux/module.h>
4 /*
5  * Include build-salt.h after module.h in order to
6  * inherit the definitions.
7  */
8 #define INCLUDE_VERMAGIC
9 #include <linux/build-salt.h>
10 #include <linux/elfnote-lto.h>
11 #include <linux/vermagic.h>
12
13 #ifdef CONFIG_UNWINDER_ORC
14 #include <asm/orc_header.h>
15 ORC_HEADER;
16 #endif
17
18 BUILD_SALT;
19 BUILD_LTO_INFO;
20
21 MODULE_INFO(vermagic, VERMAGIC_STRING);
22
23 #ifdef CONFIG_MITIGATION_RETPOLINE
24 MODULE_INFO(retpoline, "Y");
25 #endif
This page took 0.026273 seconds and 4 git commands to generate.