diff options
| author | Masahiro Yamada <[email protected]> | 2022-07-19 16:53:00 +0000 |
|---|---|---|
| committer | Masahiro Yamada <[email protected]> | 2022-07-27 12:18:00 +0000 |
| commit | abe864b8e19adf33b48997de8bc1a8f095390ade (patch) | |
| tree | 699bb0948240cf9c2d2dea912c8f8638064fb929 /scripts/mod/file2alias.c | |
| parent | modpost: drop executable ELF support (diff) | |
| download | kernel-abe864b8e19adf33b48997de8bc1a8f095390ade.tar.gz kernel-abe864b8e19adf33b48997de8bc1a8f095390ade.zip | |
modpost: use sym_get_data() to get module device_table data
Use sym_get_data() to replace the long code.
Signed-off-by: Masahiro Yamada <[email protected]>
Reviewed-by: Nick Desaulniers <[email protected]>
Diffstat (limited to 'scripts/mod/file2alias.c')
| -rw-r--r-- | scripts/mod/file2alias.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/scripts/mod/file2alias.c b/scripts/mod/file2alias.c index cbd6b0f48b4e..80d973144fde 100644 --- a/scripts/mod/file2alias.c +++ b/scripts/mod/file2alias.c @@ -1571,9 +1571,7 @@ void handle_moddevtable(struct module *mod, struct elf_info *info, zeros = calloc(1, sym->st_size); symval = zeros; } else { - symval = (void *)info->hdr - + info->sechdrs[get_secindex(info, sym)].sh_offset - + sym->st_value; + symval = sym_get_data(info, sym); } /* First handle the "special" cases */ |
