diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2024-02-11 13:41:05 +0100 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2024-02-20 12:47:45 +0100 |
commit | 91b69454f93d1c905f3a56bb39856db9a220c791 (patch) | |
tree | 626c49c3d828ca15576080f79ac94144b03984fd /scripts/kconfig/lkc_proto.h | |
parent | kconfig: print recursive dependency errors in the parsed order (diff) | |
download | linux-91b69454f93d1c905f3a56bb39856db9a220c791.tar.xz linux-91b69454f93d1c905f3a56bb39856db9a220c791.zip |
kconfig: use generic macros to implement symbol hashtable
Use helper macros in hashtable.h for generic hashtable implementation.
We can git rid of the hash head index of for_all_symbols().
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts/kconfig/lkc_proto.h')
-rw-r--r-- | scripts/kconfig/lkc_proto.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/scripts/kconfig/lkc_proto.h b/scripts/kconfig/lkc_proto.h index 94299e42402f..2807fa584c2b 100644 --- a/scripts/kconfig/lkc_proto.h +++ b/scripts/kconfig/lkc_proto.h @@ -18,8 +18,6 @@ void conf_set_message_callback(void (*fn)(const char *s)); bool conf_errors(void); /* symbol.c */ -extern struct symbol * symbol_hash[SYMBOL_HASHSIZE]; - struct symbol * sym_lookup(const char *name, int flags); struct symbol * sym_find(const char *name); void print_symbol_for_listconfig(struct symbol *sym); |