Skip to content

Commit

Permalink
module: Remove unused macros module_addr_min/max
Browse files Browse the repository at this point in the history
Unused macros reported by [-Wunused-macros].

These macros are introduced to record the bound address of modules.

Commit 80b8bf4 ("module: Always have struct mod_tree_root") made
"struct mod_tree_root" always present and its members addr_min and
addr_max can be directly accessed.

Macros module_addr_min and module_addr_min are not used anymore, so remove
them.

Signed-off-by: Chen Zhongjin <chenzhongjin@huawei.com>
Reviewed-by: Miroslav Benes <mbenes@suse.cz>
Reviewed-by: Christophe Leroy <christophe.leroy@csgroup.eu>
[mcgrof: massaged the commit messsage as suggested by Miroslav]
Signed-off-by: Luis Chamberlain <mcgrof@kernel.org>
  • Loading branch information
Chen Zhongjin authored and Luis Chamberlain committed Nov 11, 2022
1 parent 3cd6086 commit 89a6b59
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions kernel/module/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,6 @@ struct mod_tree_root mod_data_tree __cacheline_aligned = {
};
#endif

#define module_addr_min mod_tree.addr_min
#define module_addr_max mod_tree.addr_max

struct symsearch {
const struct kernel_symbol *start, *stop;
const s32 *crcs;
Expand Down

0 comments on commit 89a6b59

Please sign in to comment.