diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2023-10-23 02:06:04 +0900 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2023-10-28 21:31:21 +0900 |
commit | 3ada34b0f6559b2388f1983366614fbe8027b6fd (patch) | |
tree | 02070b6b395ba357dac6cf587abbd186d651c7d4 /scripts | |
parent | 1b1595cd04bb1eff448e68ef2789d37f1268b879 (diff) |
modpost: remove ALL_EXIT_DATA_SECTIONS macro
This is unused.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/mod/modpost.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c index f1f658122ad8..d936fa5fbbb1 100644 --- a/scripts/mod/modpost.c +++ b/scripts/mod/modpost.c @@ -794,8 +794,6 @@ static void check_section(const char *modname, struct elf_info *elf, #define ALL_INIT_DATA_SECTIONS \ ".init.setup", ".init.rodata", ".meminit.rodata", \ ".init.data", ".meminit.data" -#define ALL_EXIT_DATA_SECTIONS \ - ".exit.data", ".memexit.data" #define ALL_INIT_TEXT_SECTIONS \ ".init.text", ".meminit.text" |