diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2023-05-21 18:04:21 +0200 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2023-05-28 13:36:52 +0200 |
commit | d4323e83505247d2aca1e2488f69da9aab8ad03f (patch) | |
tree | c0c2d948099f5b97c85ef17c09614fc146194e18 /scripts | |
parent | modpost: remove is_shndx_special() check from section_rel(a) (diff) | |
download | linux-d4323e83505247d2aca1e2488f69da9aab8ad03f.tar.xz linux-d4323e83505247d2aca1e2488f69da9aab8ad03f.zip |
modpost: merge fromsec=DATA_SECTIONS entries in sectioncheck table
You can merge these entries.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Reviewed-by: Nick Desaulniers <ndesaulniers@google.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/mod/modpost.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c index 1018cd9ced71..21417a4a7655 100644 --- a/scripts/mod/modpost.c +++ b/scripts/mod/modpost.c @@ -900,12 +900,7 @@ static const struct sectioncheck sectioncheck[] = { }, { .fromsec = { DATA_SECTIONS, NULL }, - .bad_tosec = { ALL_XXXINIT_SECTIONS, NULL }, - .mismatch = DATA_TO_ANY_INIT, -}, -{ - .fromsec = { DATA_SECTIONS, NULL }, - .bad_tosec = { INIT_SECTIONS, NULL }, + .bad_tosec = { ALL_XXXINIT_SECTIONS, INIT_SECTIONS, NULL }, .mismatch = DATA_TO_ANY_INIT, }, { |