[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20231101150404.754108-3-masahiroy@kernel.org>
Date: Thu, 2 Nov 2023 00:03:59 +0900
From: Masahiro Yamada <masahiroy@...nel.org>
To: linux-kbuild@...r.kernel.org
Cc: linux-kernel@...r.kernel.org, Greg Ungerer <gerg@...nel.org>,
Jack Brennen <jbrennen@...gle.com>,
Masahiro Yamada <masahiroy@...nel.org>,
Nathan Chancellor <nathan@...nel.org>,
Nick Desaulniers <ndesaulniers@...gle.com>,
Nicolas Schier <nicolas@...sle.eu>
Subject: [PATCH 2/7] modpost: add const qualifier to syminfo table
symsearch_find_nearest() does not modify the table.
Signed-off-by: Masahiro Yamada <masahiroy@...nel.org>
---
scripts/mod/symsearch.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/mod/symsearch.c b/scripts/mod/symsearch.c
index aa4ed51f9960..00f0f9c354db 100644
--- a/scripts/mod/symsearch.c
+++ b/scripts/mod/symsearch.c
@@ -156,7 +156,7 @@ Elf_Sym *symsearch_find_nearest(struct elf_info *elf, Elf_Addr addr,
{
unsigned int hi = elf->symsearch->table_size;
unsigned int lo = 0;
- struct syminfo *table = elf->symsearch->table;
+ const struct syminfo *table = elf->symsearch->table;
struct syminfo target;
target.addr = addr;
--
2.40.1
Powered by blists - more mailing lists